SlideShare a Scribd company logo
#gdg_kharkiv_center
HTTP Cache
Tips & Tricks (RFC 2616)
Alexander Sergienko
Senior Developer @ DataArt
#gdg_kharkiv_center
Why do I need to do this?
• Decrease traffic
• Increase loading speed
• Write less lines of code
• Offline mode
#gdg_kharkiv_center
How can I do this?
URL DATA CREATED_AT UPDATED_AT HASH_CODE
TEXT
BLOB TEXT TEXT TEXT
Enable HTTP cache
private void enableHttpResponseCache() {
try {
long httpCacheSize = 10 * 1024 * 1024; // 10 MiB
File httpCacheDir = new File(getExternalCacheDir(), "http");
HttpResponseCache.install(httpCacheDir, httpCacheSize);
} catch (Exception httpResponseCacheNotAvailable) {
Log.d(TAG, "HTTP response cache is unavailable.");
}
}
#gdg_kharkiv_center
Will it work?
#gdg_kharkiv_center
Content validation headers
Request headers Response headers
If-Modified-Since (HTTP Date) Last-Modified (HTTP Date)
If-None-Match (Object Hash) ETag (Object Hash)
HTTP Date
RFC 822, updated by RFC 1123 Sun, 06 Nov 1994 08:49:37 GMT
RFC 822, updated by RFC 1123 Sunday, 06-Nov-94 08:49:37 GMT
RFC 822, updated by RFC 1123 Sun Nov 6 08:49:37 1994
#gdg_kharkiv_center
Check cache
#gdg_kharkiv_center
Cache managing headers
Request headers Response headers
Cache-Control ("no-cache" ;
"no-store"; "max-age" "="
delta-seconds ; "max-stale" "="
delta-seconds; "min-fresh" "="
delta-seconds ; "no-transform";
"only-if-cached")
Cache-Control ("public";
"private"; "no-cache"; "no-
store"; "no-transform"; "must-
revalidate"; "proxy-
revalidate"; "max-age" "="
delta-seconds; "s-maxage" "="
delta-seconds)
Pragma (no-cache)
Expires (HTTP Date)
#gdg_kharkiv_center
Alexander Sergienko
https://www.linkedin.com/in/alexandr-sergienko-3874b491
Q&A
Thank you!

More Related Content

What's hot (20)

PPTX
Webinar: Architecting Secure and Compliant Applications with MongoDB
MongoDB
 
PDF
«Scrapy internals» Александр Сибиряков, Scrapinghub
it-people
 
PDF
Webinar slides: Become a MongoDB DBA - What to Monitor (if you’re really a My...
Severalnines
 
PDF
Mongo performance tuning: tips and tricks
Vladimir Malyk
 
PPT
Rest services caching
Sperasoft
 
PDF
PyGotham 2014 Introduction to Profiling
Perrin Harkins
 
PDF
Introduction to performance tuning perl web applications
Perrin Harkins
 
PDF
https://docs.google.com/presentation/d/1DcL4zK6i3HZRDD4xTGX1VpSOwyu2xBeWLT6a_...
MongoDB
 
PPT
World Wide Web Caching
ersanbilik
 
PPTX
Performance Web
Rodolfo Fadino Junior
 
PDF
AtlasCamp 2014: Building a Connect Add-on With Your Own Stack
Atlassian
 
PDF
How to speed up your website
VernalWeb
 
PDF
2 network tips
Binary Studio
 
PPTX
Understanding Web Cache
ProdigyView
 
PDF
MongoDB .local Bengaluru 2019: New Encryption Capabilities in MongoDB 4.2: A ...
MongoDB
 
PDF
Securing Databases with Dynamic Credentials and HashiCorp’s Vault
hyeongchae lee
 
PPTX
A faster web
Bakani Pilime
 
ODP
Caching for Cash - Part 4
Helgi Þormar Þorbjörnsson
 
PPTX
Tales from production with postgreSQL at scale
Soumya Ranjan Subudhi
 
Webinar: Architecting Secure and Compliant Applications with MongoDB
MongoDB
 
«Scrapy internals» Александр Сибиряков, Scrapinghub
it-people
 
Webinar slides: Become a MongoDB DBA - What to Monitor (if you’re really a My...
Severalnines
 
Mongo performance tuning: tips and tricks
Vladimir Malyk
 
Rest services caching
Sperasoft
 
PyGotham 2014 Introduction to Profiling
Perrin Harkins
 
Introduction to performance tuning perl web applications
Perrin Harkins
 
https://docs.google.com/presentation/d/1DcL4zK6i3HZRDD4xTGX1VpSOwyu2xBeWLT6a_...
MongoDB
 
World Wide Web Caching
ersanbilik
 
Performance Web
Rodolfo Fadino Junior
 
AtlasCamp 2014: Building a Connect Add-on With Your Own Stack
Atlassian
 
How to speed up your website
VernalWeb
 
2 network tips
Binary Studio
 
Understanding Web Cache
ProdigyView
 
MongoDB .local Bengaluru 2019: New Encryption Capabilities in MongoDB 4.2: A ...
MongoDB
 
Securing Databases with Dynamic Credentials and HashiCorp’s Vault
hyeongchae lee
 
A faster web
Bakani Pilime
 
Caching for Cash - Part 4
Helgi Þormar Þorbjörnsson
 
Tales from production with postgreSQL at scale
Soumya Ranjan Subudhi
 

Similar to Александр Сергиенко, Senior Android Developer, DataArt (20)

PDF
Caching. api. http 1.1
Artjoker Digital
 
PPTX
Cache is King
Steve Souders
 
PPTX
Http Caching for the Android Aficionado
Paul Blundell
 
KEY
Fearless HTTP requests abuse
Luis Cipriani
 
PPTX
Brief of Caching
Rafiul Islam
 
PPTX
Brief of Caching - Rafiul Islam
Cefalo
 
PPTX
Caching
saravanan_k83
 
PPTX
Cache is the king
Kasia Przybylska
 
PPTX
Cache is king
edrone
 
PDF
Thijs Feryn - Leverage HTTP to deliver cacheable websites - Codemotion Berlin...
Codemotion
 
PDF
Thijs Feryn - Leverage HTTP to deliver cacheable websites - Codemotion Berlin...
Codemotion
 
PPTX
Retrofit caching V1.9.0 - Android OkClient
Mathan Raj
 
PDF
Altitude SF 2017: Optimizing your hit rate
Fastly
 
PDF
Indic threads delhi13-rest-anirudh
Anirudh Bhatnagar
 
PPTX
Caching up is hard to do: Improving your Web Services' Performance
RTigger
 
PDF
API Caching, why your server needs some rest
Luis Cipriani
 
PPTX
Advanced Caching Concepts @ Velocity NY 2015
Rakesh Chaudhary
 
PDF
HTTP Caching in Web Application
Martins Sipenko
 
PDF
Caching in HTTP
Alexander Shopov
 
ODP
Caching Strategies
Michal Špaček
 
Caching. api. http 1.1
Artjoker Digital
 
Cache is King
Steve Souders
 
Http Caching for the Android Aficionado
Paul Blundell
 
Fearless HTTP requests abuse
Luis Cipriani
 
Brief of Caching
Rafiul Islam
 
Brief of Caching - Rafiul Islam
Cefalo
 
Caching
saravanan_k83
 
Cache is the king
Kasia Przybylska
 
Cache is king
edrone
 
Thijs Feryn - Leverage HTTP to deliver cacheable websites - Codemotion Berlin...
Codemotion
 
Thijs Feryn - Leverage HTTP to deliver cacheable websites - Codemotion Berlin...
Codemotion
 
Retrofit caching V1.9.0 - Android OkClient
Mathan Raj
 
Altitude SF 2017: Optimizing your hit rate
Fastly
 
Indic threads delhi13-rest-anirudh
Anirudh Bhatnagar
 
Caching up is hard to do: Improving your Web Services' Performance
RTigger
 
API Caching, why your server needs some rest
Luis Cipriani
 
Advanced Caching Concepts @ Velocity NY 2015
Rakesh Chaudhary
 
HTTP Caching in Web Application
Martins Sipenko
 
Caching in HTTP
Alexander Shopov
 
Caching Strategies
Michal Špaček
 
Ad

More from Alina Vilk (20)

PDF
Designer in you, Irina Shapoval, Lead Designer, DataArt
Alina Vilk
 
PDF
.NET framework vs .net core 3.1 commons & differences
Alina Vilk
 
PPTX
Expression trees in c#, Алексей Голубь (Svitla Systems)
Alina Vilk
 
PPTX
"Dev to PM" D.Fedotov
Alina Vilk
 
PPTX
Игорь Литвиненко (Senior iOS- и Android-разработчик,DataArt)
Alina Vilk
 
PDF
Алексей Рыбаков (Senior Engineer,Technical Evangelist DataArt )
Alina Vilk
 
PDF
Ирина Шаповал,(Lead UI/UX дизайнер, DataArt)
Alina Vilk
 
PPTX
Devops, v.02, Alexander Pavlenko (DataArt)
Alina Vilk
 
PPTX
O DevOps, Stanislav Kolenkin ( DataArt)
Alina Vilk
 
PPTX
Interactive 3D graphics for web with three.js, Andrey Vedilin, DataArt
Alina Vilk
 
PPTX
Architecture components, Константин Марс, TeamLead, Senior Developer, DataArt
Alina Vilk
 
PPTX
Al around ML 2017, Оксана Савенко, студентка НТУ имени Каразина
Alina Vilk
 
PPTX
Встреча Google Post IO ( Владимир Иванов, Катерина Заворотченко и Сергей Комлач)
Alina Vilk
 
PPTX
Кирилл Безпалый, .NET Developer, Ciklum
Alina Vilk
 
PPTX
Игорь Леонтьев, Lead Architect on all Blockchain projects of Viseo group
Alina Vilk
 
PPTX
Евгений Дубовик, Senior Developer, DataArtDb presentation gdg
Alina Vilk
 
PDF
Дмитрий Козицкий,Lead UX / UI Designer, DataArt
Alina Vilk
 
PPTX
Игорь Юзовицкий,UX Expert, DataArt
Alina Vilk
 
PPTX
Android Things, Alexey Rybakov, Technical Evangelist, DataArt
Alina Vilk
 
PPTX
«Делегирование как идеальный способ угробить проект», Александр Ивахненко, IT...
Alina Vilk
 
Designer in you, Irina Shapoval, Lead Designer, DataArt
Alina Vilk
 
.NET framework vs .net core 3.1 commons & differences
Alina Vilk
 
Expression trees in c#, Алексей Голубь (Svitla Systems)
Alina Vilk
 
"Dev to PM" D.Fedotov
Alina Vilk
 
Игорь Литвиненко (Senior iOS- и Android-разработчик,DataArt)
Alina Vilk
 
Алексей Рыбаков (Senior Engineer,Technical Evangelist DataArt )
Alina Vilk
 
Ирина Шаповал,(Lead UI/UX дизайнер, DataArt)
Alina Vilk
 
Devops, v.02, Alexander Pavlenko (DataArt)
Alina Vilk
 
O DevOps, Stanislav Kolenkin ( DataArt)
Alina Vilk
 
Interactive 3D graphics for web with three.js, Andrey Vedilin, DataArt
Alina Vilk
 
Architecture components, Константин Марс, TeamLead, Senior Developer, DataArt
Alina Vilk
 
Al around ML 2017, Оксана Савенко, студентка НТУ имени Каразина
Alina Vilk
 
Встреча Google Post IO ( Владимир Иванов, Катерина Заворотченко и Сергей Комлач)
Alina Vilk
 
Кирилл Безпалый, .NET Developer, Ciklum
Alina Vilk
 
Игорь Леонтьев, Lead Architect on all Blockchain projects of Viseo group
Alina Vilk
 
Евгений Дубовик, Senior Developer, DataArtDb presentation gdg
Alina Vilk
 
Дмитрий Козицкий,Lead UX / UI Designer, DataArt
Alina Vilk
 
Игорь Юзовицкий,UX Expert, DataArt
Alina Vilk
 
Android Things, Alexey Rybakov, Technical Evangelist, DataArt
Alina Vilk
 
«Делегирование как идеальный способ угробить проект», Александр Ивахненко, IT...
Alina Vilk
 
Ad

Recently uploaded (20)

PPTX
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
PPTX
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
PDF
Aprendendo Arquitetura Framework Salesforce - Dia 03
Mauricio Alexandre Silva
 
PDF
CONCURSO DE POESIA “POETUFAS – PASSOS SUAVES PELO VERSO.pdf
Colégio Santa Teresinha
 
PDF
Dimensions of Societal Planning in Commonism
StefanMz
 
PPTX
How to Handle Salesperson Commision in Odoo 18 Sales
Celine George
 
PPTX
HUMAN RESOURCE MANAGEMENT: RECRUITMENT, SELECTION, PLACEMENT, DEPLOYMENT, TRA...
PRADEEP ABOTHU
 
PPTX
PPT-Q1-WEEK-3-SCIENCE-ERevised Matatag Grade 3.pptx
reijhongidayawan02
 
PDF
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
PPT
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
PDF
Knee Extensor Mechanism Injuries - Orthopedic Radiologic Imaging
Sean M. Fox
 
PDF
Geographical Diversity of India 100 Mcq.pdf/ 7th class new ncert /Social/Samy...
Sandeep Swamy
 
PDF
The Different Types of Non-Experimental Research
Thelma Villaflores
 
PDF
Biological Bilingual Glossary Hindi and English Medium
World of Wisdom
 
PDF
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
PPTX
How to Create Odoo JS Dialog_Popup in Odoo 18
Celine George
 
PDF
The History of Phone Numbers in Stoke Newington by Billy Thomas
History of Stoke Newington
 
PPT
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
PPTX
How to Set Up Tags in Odoo 18 - Odoo Slides
Celine George
 
PPTX
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
Aprendendo Arquitetura Framework Salesforce - Dia 03
Mauricio Alexandre Silva
 
CONCURSO DE POESIA “POETUFAS – PASSOS SUAVES PELO VERSO.pdf
Colégio Santa Teresinha
 
Dimensions of Societal Planning in Commonism
StefanMz
 
How to Handle Salesperson Commision in Odoo 18 Sales
Celine George
 
HUMAN RESOURCE MANAGEMENT: RECRUITMENT, SELECTION, PLACEMENT, DEPLOYMENT, TRA...
PRADEEP ABOTHU
 
PPT-Q1-WEEK-3-SCIENCE-ERevised Matatag Grade 3.pptx
reijhongidayawan02
 
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
Knee Extensor Mechanism Injuries - Orthopedic Radiologic Imaging
Sean M. Fox
 
Geographical Diversity of India 100 Mcq.pdf/ 7th class new ncert /Social/Samy...
Sandeep Swamy
 
The Different Types of Non-Experimental Research
Thelma Villaflores
 
Biological Bilingual Glossary Hindi and English Medium
World of Wisdom
 
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
How to Create Odoo JS Dialog_Popup in Odoo 18
Celine George
 
The History of Phone Numbers in Stoke Newington by Billy Thomas
History of Stoke Newington
 
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
How to Set Up Tags in Odoo 18 - Odoo Slides
Celine George
 
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 

Александр Сергиенко, Senior Android Developer, DataArt