SlideShare una empresa de Scribd logo
1 de 24
Redis in Practice
• Why Redis
• How to make Redis Faster
• Replication and Sentinel
Chen Huang
c.huang@*****.com
Content
• Why Redis
 Comparison of In-Memory Storages
 Scenarios
 Sharding (Parallel Scaling)
• How to make Redis Faster
• Replication and Sentinel
Comparison of In-Memory Storages
Redis Memcached MemSQL
Data Structure
Key-Value, List,
Hash, Set, Z-Set Key-Value Relational
Concurrency Poor Good Good
Sharding
Not Generally
Available Yes Yes
Transaction Optimistic Lock CAS No
Scripting Lua No No
Replication Yes Repcached Yes
Persistance Yes MemcacheDB Yes
High Availability Redis Sentinel ? ?
Scenarios
• Cache
Java:
Map cache = new LinkedHashMap() {
protected boolean removeEldestEntry(Map.Entry eldest) {
return isTimeout(eldest);
}
}
Redis:
SETEX key timeout value
Scenarios
• List / Queue
Java Redis
LinkedList / ArrayDeque List
list.offerFirst(element) LPUSH list element
list.offerLast(element) RPUSH list element
list.pollFirst() LPOP list
list.pollLast() RPOP list
• Session
[Servlet API]
HttpSession session = req.getSession(); // got by session id
Object oldValue = session.getAttribute(key);
session.setAttribute(key, newValue);
[Implementation]
Scenarios
Java Redis
HashMap<String, HashMap> Hash
map.get(id).get(key); HGET id key
map.get(id).put(key, value); HSET id key value
Scenarios
• Session Timeout
[Servlet API]
session.set(key, new HttpSessionBindingListener() {
public void valueUnbound(HttpSessionBindingEvent event) {
// Trigger Timeout Event
}
});
[Implementation]
Java Redis
LinkedHashMap Hash + Sorted Set (ZSet)
Iterator i = map.values().iterator();
while (i.hasNext() &&
isTimeout(i.next())) {
// Trigger Timeout Event
i.remove();
}
ZRANGEBYSCORE zset 0 now
// Trigger Timeout Event
HDEL id, id, ...
ZREMRANGEBYSCORE zset 0 now
Sharding (Parallel Scaling)
• Redis is Single-Threaded
• Multiple Redis Instances in one Server
• Partition by Hash of Keys
Content
• Why Redis
• How to make Redis Faster
 Time Complexity
 Communication Latency
 Serialization
• Replication and Sentinel
Time Complexity
See Redis Documentation for more Details
Structure Operation Complexity
Hash HGET id key
Key-Value GET id
Key-Value KEYS prefix*
List LPUSH/LPOP
List LINDEX/LSET
Sorted Set ZADD
Sorted Set ZRANGEBYSCORE
O(1)
O(1)
O(n)
O(1)
O(n)
O(log(n))
O(log(n)
+m)
Communication Latency
• Massive (Multi-Row) Insertion
[SQL]
× INSERT INTO cache (key, value) VALUES ("key1",
"value1");
INSERT INTO cache (key, value) VALUES ("key2",
"value2");
...
√ INSERT INTO cache (key, value) VALUES ("key1",
"value1"),
("key2", "value2"), ("key3", "value3"), ...
[Redis]
× HSET cache key1 value1
HSET cache key2 value2
...
√ HMSET cache key1 value1 key2 value2 ...
Communication Latency
• Pipeline (Batch)
Communication Latency
• Pipeline (Batch)
[SQL in Java]
try (Statement stmt = conn.createStatement()) {
stmt.addBatch("INSERT INTO cache1 ...");
stmt.addBatch("INSERT INTO cache2 ...");
stmt.executeBatch();
}
[Redis in Java]
Pipeline pl = jedis.pipelined();
pl.hset("cache1", "key1", "value1");
pl.hset("cache2", "key2", "value2");
pl.sync();
Communication Latency
• Scripting
[Java]
int balance = Integer.parseInt(jedis.get("balance"));
if (balance > 100) {
jedis.set("balance", Integer.toString(balance - 100));
}
[Lua]
local i = tonumber(redis.call('get', 'balance'))
if i > 100 then
redis.call('set', 'balance', tostring(i - 100))
end
Communication Latency
• SQL Efficiency
Multi-Row Insertion > Batch > Stored Procedure
• Redis Efficiency
Massive Insertion > Pipeline > Scripting
Serialization
Serialization
Serialization
• Kryo vs. Protobuf
Content
• Why Redis
• How to make Redis Faster
• Replication and Sentinel
 Replication
 Sentinel
 Practice with PHP
Replication
Master
Slave-1
Slave-2
Slave-3
Web Server
Write
Sync to
Sync to
Sync to
Web Server
Read
Read
Read
Sentinel
A
B
C
D
X
B
C
D
A
Sentinels Sentinels
Sync from
Sync from
Practice with PHP
Shard 1 Shard 2
Sentinels
Shard 3 Shard 4
Web Server
Config Center
Write
Read
Scheduled Config Sync
Web Server
Web Server
redis.config.php
redis.config.php
redis.config.php
redis.config.php
Scheduled Config Sync
Practice with PHP
References
• Redis
http://redis.io/
• phpredis
https://github.com/phpredis/phpredis

Más contenido relacionado

La actualidad más candente

Redis — The AK-47 of Post-relational Databases
Redis — The AK-47 of Post-relational DatabasesRedis — The AK-47 of Post-relational Databases
Redis — The AK-47 of Post-relational Databases
Karel Minarik
 
Kicking ass with redis
Kicking ass with redisKicking ass with redis
Kicking ass with redis
Dvir Volk
 

La actualidad más candente (20)

Redis — The AK-47 of Post-relational Databases
Redis — The AK-47 of Post-relational DatabasesRedis — The AK-47 of Post-relational Databases
Redis — The AK-47 of Post-relational Databases
 
Redis overview for Software Architecture Forum
Redis overview for Software Architecture ForumRedis overview for Software Architecture Forum
Redis overview for Software Architecture Forum
 
Nodejs - A quick tour (v5)
Nodejs - A quick tour (v5)Nodejs - A quick tour (v5)
Nodejs - A quick tour (v5)
 
Nodejs - A-quick-tour-v3
Nodejs - A-quick-tour-v3Nodejs - A-quick-tour-v3
Nodejs - A-quick-tour-v3
 
Nodejs - A quick tour (v4)
Nodejs - A quick tour (v4)Nodejs - A quick tour (v4)
Nodejs - A quick tour (v4)
 
Redis Use Patterns (DevconTLV June 2014)
Redis Use Patterns (DevconTLV June 2014)Redis Use Patterns (DevconTLV June 2014)
Redis Use Patterns (DevconTLV June 2014)
 
Nodejs - Should Ruby Developers Care?
Nodejs - Should Ruby Developers Care?Nodejs - Should Ruby Developers Care?
Nodejs - Should Ruby Developers Care?
 
Caching solutions with Redis
Caching solutions   with RedisCaching solutions   with Redis
Caching solutions with Redis
 
Redis in Practice
Redis in PracticeRedis in Practice
Redis in Practice
 
Redis basics
Redis basicsRedis basics
Redis basics
 
Redis and it's data types
Redis and it's data typesRedis and it's data types
Redis and it's data types
 
Kicking ass with redis
Kicking ass with redisKicking ass with redis
Kicking ass with redis
 
Node.js - A practical introduction (v2)
Node.js  - A practical introduction (v2)Node.js  - A practical introduction (v2)
Node.js - A practical introduction (v2)
 
Paris Redis Meetup Introduction
Paris Redis Meetup IntroductionParis Redis Meetup Introduction
Paris Redis Meetup Introduction
 
Redis and its many use cases
Redis and its many use casesRedis and its many use cases
Redis and its many use cases
 
Memcached Study
Memcached StudyMemcached Study
Memcached Study
 
ELK stack at weibo.com
ELK stack at weibo.comELK stack at weibo.com
ELK stack at weibo.com
 
{{more}} Kibana4
{{more}} Kibana4{{more}} Kibana4
{{more}} Kibana4
 
Node.js in production
Node.js in productionNode.js in production
Node.js in production
 
DBD::Gofer 200809
DBD::Gofer 200809DBD::Gofer 200809
DBD::Gofer 200809
 

Destacado (8)

MOSC2012 - Building High-Performance Web-Application with PHP & MongoDB
MOSC2012 - Building High-Performance Web-Application with PHP & MongoDBMOSC2012 - Building High-Performance Web-Application with PHP & MongoDB
MOSC2012 - Building High-Performance Web-Application with PHP & MongoDB
 
Key-value databases in practice Redis @ DotNetToscana
Key-value databases in practice Redis @ DotNetToscanaKey-value databases in practice Redis @ DotNetToscana
Key-value databases in practice Redis @ DotNetToscana
 
Slide Seminar PHP Indonesia - NoSQL Redis
Slide Seminar PHP Indonesia - NoSQL RedisSlide Seminar PHP Indonesia - NoSQL Redis
Slide Seminar PHP Indonesia - NoSQL Redis
 
Redis Everywhere - Sunshine PHP
Redis Everywhere - Sunshine PHPRedis Everywhere - Sunshine PHP
Redis Everywhere - Sunshine PHP
 
Beyond relational database - Building high performance websites using Redis a...
Beyond relational database - Building high performance websites using Redis a...Beyond relational database - Building high performance websites using Redis a...
Beyond relational database - Building high performance websites using Redis a...
 
Scaling PHP to 40 Million Uniques
Scaling PHP to 40 Million UniquesScaling PHP to 40 Million Uniques
Scaling PHP to 40 Million Uniques
 
PHP with Service BUS (RabbitMQ/Redis/MongoDB) - IMasters PHP Experience 2016
PHP with Service BUS (RabbitMQ/Redis/MongoDB) - IMasters PHP Experience 2016PHP with Service BUS (RabbitMQ/Redis/MongoDB) - IMasters PHP Experience 2016
PHP with Service BUS (RabbitMQ/Redis/MongoDB) - IMasters PHP Experience 2016
 
Redis everywhere - PHP London
Redis everywhere - PHP LondonRedis everywhere - PHP London
Redis everywhere - PHP London
 

Similar a Redis in Practice: Scenarios, Performance and Practice with PHP

quickguide-einnovator-9-redis
quickguide-einnovator-9-redisquickguide-einnovator-9-redis
quickguide-einnovator-9-redis
jorgesimao71
 
No sql solutions - 공개용
No sql solutions - 공개용No sql solutions - 공개용
No sql solutions - 공개용
Byeongweon Moon
 
Apache Tajo: Query Optimization Techniques and JIT-based Vectorized Engine
Apache Tajo: Query Optimization Techniques and JIT-based Vectorized EngineApache Tajo: Query Optimization Techniques and JIT-based Vectorized Engine
Apache Tajo: Query Optimization Techniques and JIT-based Vectorized Engine
DataWorks Summit
 

Similar a Redis in Practice: Scenarios, Performance and Practice with PHP (20)

Python redis talk
Python redis talkPython redis talk
Python redis talk
 
quickguide-einnovator-9-redis
quickguide-einnovator-9-redisquickguide-einnovator-9-redis
quickguide-einnovator-9-redis
 
深入了解Redis
深入了解Redis深入了解Redis
深入了解Redis
 
Типы данных JSONb, соответствующие индексы и модуль jsquery – Олег Бартунов, ...
Типы данных JSONb, соответствующие индексы и модуль jsquery – Олег Бартунов, ...Типы данных JSONb, соответствующие индексы и модуль jsquery – Олег Бартунов, ...
Типы данных JSONb, соответствующие индексы и модуль jsquery – Олег Бартунов, ...
 
PostgreSQL Moscow Meetup - September 2014 - Oleg Bartunov and Alexander Korotkov
PostgreSQL Moscow Meetup - September 2014 - Oleg Bartunov and Alexander KorotkovPostgreSQL Moscow Meetup - September 2014 - Oleg Bartunov and Alexander Korotkov
PostgreSQL Moscow Meetup - September 2014 - Oleg Bartunov and Alexander Korotkov
 
Redis introduction
Redis introductionRedis introduction
Redis introduction
 
No sql solutions - 공개용
No sql solutions - 공개용No sql solutions - 공개용
No sql solutions - 공개용
 
Introduction to redis
Introduction to redisIntroduction to redis
Introduction to redis
 
DTCC '14 Spark Runtime Internals
DTCC '14 Spark Runtime InternalsDTCC '14 Spark Runtime Internals
DTCC '14 Spark Runtime Internals
 
Hadoop Summit 2014: Query Optimization and JIT-based Vectorized Execution in ...
Hadoop Summit 2014: Query Optimization and JIT-based Vectorized Execution in ...Hadoop Summit 2014: Query Optimization and JIT-based Vectorized Execution in ...
Hadoop Summit 2014: Query Optimization and JIT-based Vectorized Execution in ...
 
Introduction to Redis
Introduction to RedisIntroduction to Redis
Introduction to Redis
 
Apache Tajo: Query Optimization Techniques and JIT-based Vectorized Engine
Apache Tajo: Query Optimization Techniques and JIT-based Vectorized EngineApache Tajo: Query Optimization Techniques and JIT-based Vectorized Engine
Apache Tajo: Query Optimization Techniques and JIT-based Vectorized Engine
 
Ingesting Over Four Million Rows Per Second With QuestDB Timeseries Database ...
Ingesting Over Four Million Rows Per Second With QuestDB Timeseries Database ...Ingesting Over Four Million Rows Per Second With QuestDB Timeseries Database ...
Ingesting Over Four Million Rows Per Second With QuestDB Timeseries Database ...
 
Big Data Day LA 2015 - Compiling DSLs for Diverse Execution Environments by Z...
Big Data Day LA 2015 - Compiling DSLs for Diverse Execution Environments by Z...Big Data Day LA 2015 - Compiling DSLs for Diverse Execution Environments by Z...
Big Data Day LA 2015 - Compiling DSLs for Diverse Execution Environments by Z...
 
Scaling Web Applications with Cassandra Presentation.ppt
Scaling Web Applications with Cassandra Presentation.pptScaling Web Applications with Cassandra Presentation.ppt
Scaling Web Applications with Cassandra Presentation.ppt
 
Postgres vs Mongo / Олег Бартунов (Postgres Professional)
Postgres vs Mongo / Олег Бартунов (Postgres Professional)Postgres vs Mongo / Олег Бартунов (Postgres Professional)
Postgres vs Mongo / Олег Бартунов (Postgres Professional)
 
Cassandra Java APIs Old and New – A Comparison
Cassandra Java APIs Old and New – A ComparisonCassandra Java APIs Old and New – A Comparison
Cassandra Java APIs Old and New – A Comparison
 
AWS re:Invent 2016: ElastiCache Deep Dive: Best Practices and Usage Patterns ...
AWS re:Invent 2016: ElastiCache Deep Dive: Best Practices and Usage Patterns ...AWS re:Invent 2016: ElastiCache Deep Dive: Best Practices and Usage Patterns ...
AWS re:Invent 2016: ElastiCache Deep Dive: Best Practices and Usage Patterns ...
 
Redis Modules - Redis India Tour - 2017
Redis Modules - Redis India Tour - 2017Redis Modules - Redis India Tour - 2017
Redis Modules - Redis India Tour - 2017
 
Postgres Vienna DB Meetup 2014
Postgres Vienna DB Meetup 2014Postgres Vienna DB Meetup 2014
Postgres Vienna DB Meetup 2014
 

Último

Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
soniya singh
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
imonikaupta
 
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
Diya Sharma
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
sexy call girls service in goa
 

Último (20)

Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
 
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
 
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
 
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls Dubai
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
 

Redis in Practice: Scenarios, Performance and Practice with PHP

  • 1. Redis in Practice • Why Redis • How to make Redis Faster • Replication and Sentinel Chen Huang c.huang@*****.com
  • 2. Content • Why Redis  Comparison of In-Memory Storages  Scenarios  Sharding (Parallel Scaling) • How to make Redis Faster • Replication and Sentinel
  • 3. Comparison of In-Memory Storages Redis Memcached MemSQL Data Structure Key-Value, List, Hash, Set, Z-Set Key-Value Relational Concurrency Poor Good Good Sharding Not Generally Available Yes Yes Transaction Optimistic Lock CAS No Scripting Lua No No Replication Yes Repcached Yes Persistance Yes MemcacheDB Yes High Availability Redis Sentinel ? ?
  • 4. Scenarios • Cache Java: Map cache = new LinkedHashMap() { protected boolean removeEldestEntry(Map.Entry eldest) { return isTimeout(eldest); } } Redis: SETEX key timeout value
  • 5. Scenarios • List / Queue Java Redis LinkedList / ArrayDeque List list.offerFirst(element) LPUSH list element list.offerLast(element) RPUSH list element list.pollFirst() LPOP list list.pollLast() RPOP list
  • 6. • Session [Servlet API] HttpSession session = req.getSession(); // got by session id Object oldValue = session.getAttribute(key); session.setAttribute(key, newValue); [Implementation] Scenarios Java Redis HashMap<String, HashMap> Hash map.get(id).get(key); HGET id key map.get(id).put(key, value); HSET id key value
  • 7. Scenarios • Session Timeout [Servlet API] session.set(key, new HttpSessionBindingListener() { public void valueUnbound(HttpSessionBindingEvent event) { // Trigger Timeout Event } }); [Implementation] Java Redis LinkedHashMap Hash + Sorted Set (ZSet) Iterator i = map.values().iterator(); while (i.hasNext() && isTimeout(i.next())) { // Trigger Timeout Event i.remove(); } ZRANGEBYSCORE zset 0 now // Trigger Timeout Event HDEL id, id, ... ZREMRANGEBYSCORE zset 0 now
  • 8. Sharding (Parallel Scaling) • Redis is Single-Threaded • Multiple Redis Instances in one Server • Partition by Hash of Keys
  • 9. Content • Why Redis • How to make Redis Faster  Time Complexity  Communication Latency  Serialization • Replication and Sentinel
  • 10. Time Complexity See Redis Documentation for more Details Structure Operation Complexity Hash HGET id key Key-Value GET id Key-Value KEYS prefix* List LPUSH/LPOP List LINDEX/LSET Sorted Set ZADD Sorted Set ZRANGEBYSCORE O(1) O(1) O(n) O(1) O(n) O(log(n)) O(log(n) +m)
  • 11. Communication Latency • Massive (Multi-Row) Insertion [SQL] × INSERT INTO cache (key, value) VALUES ("key1", "value1"); INSERT INTO cache (key, value) VALUES ("key2", "value2"); ... √ INSERT INTO cache (key, value) VALUES ("key1", "value1"), ("key2", "value2"), ("key3", "value3"), ... [Redis] × HSET cache key1 value1 HSET cache key2 value2 ... √ HMSET cache key1 value1 key2 value2 ...
  • 13. Communication Latency • Pipeline (Batch) [SQL in Java] try (Statement stmt = conn.createStatement()) { stmt.addBatch("INSERT INTO cache1 ..."); stmt.addBatch("INSERT INTO cache2 ..."); stmt.executeBatch(); } [Redis in Java] Pipeline pl = jedis.pipelined(); pl.hset("cache1", "key1", "value1"); pl.hset("cache2", "key2", "value2"); pl.sync();
  • 14. Communication Latency • Scripting [Java] int balance = Integer.parseInt(jedis.get("balance")); if (balance > 100) { jedis.set("balance", Integer.toString(balance - 100)); } [Lua] local i = tonumber(redis.call('get', 'balance')) if i > 100 then redis.call('set', 'balance', tostring(i - 100)) end
  • 15. Communication Latency • SQL Efficiency Multi-Row Insertion > Batch > Stored Procedure • Redis Efficiency Massive Insertion > Pipeline > Scripting
  • 19. Content • Why Redis • How to make Redis Faster • Replication and Sentinel  Replication  Sentinel  Practice with PHP
  • 22. Practice with PHP Shard 1 Shard 2 Sentinels Shard 3 Shard 4 Web Server Config Center Write Read Scheduled Config Sync Web Server Web Server redis.config.php redis.config.php redis.config.php redis.config.php Scheduled Config Sync