SlideShare a Scribd company logo
Applied Redis
  Barcamp Saigon 2012
About me
 @hotrannam
KMS Technology
take away
back to school
data structures
big O
do it right
( data model & query performance )
redis???
data structure
    server
data types
#1   strings
#2   hashes
#3   lists
#4   sets
#5   sorted sets
data examples
Keys                    Values

page:index.html         <html><head>[…] string
login_count             7464
users_logged_in_today   {1, 2, 3, 4, 5}    set
latest_post_ids         [201, 204, 205]   list
user:123:session        time => 10927353 hash
                        username => joe
users_and_scores        joe ~ 1348 sorted set
                        fred ~ 938
                        chris ~ 2832
command examples
SET my_key “my value”
GET my_key
INCR next_post_id
EXPIRE my_key 1234
TTL my_key
DEL my_key                  field     value
EXISTS my_key
                  HSET product:1 id 1
                  HSET product:1 name “iPad”
                  HSET product:1 available 10
commands
have its big O
  ( mostly )
and beyond
bring to life
#1 cache data
#2 who is online
# add to friends set
SADD users:nam:friends duy
SADD users:nam:friends khoi
# add to online set
SADD online nam
SADD online nghia
SADD online khoi
# get online friends – {khoi}
SINTER users:nam:friends online
#3 leaderboard ( ranking )
# add to leaderboard (sorted set)
ZADD leaderboard <score> <player>
# get top 5
ZREVRANGEBYSCORE leaderboard +inf –inf
WITHSCORES LIMIT 0 5
# get rank of Khoi
ZREVRANK leaderboard Khoi
# get 5 players around Khoi
ZREVRANGEBYSCORE leaderboard +inf –inf
WITHSCORES LIMIT 2 5
#4 cross-app communication
# web app
SUBSCRIBE chat
PUBLISH chat “Hello! I’m web app.”

# mobile app
SUBSCRIBE chat
PUBLISH chat “Hi! I’m mobile app.”
Thank you!

More Related Content

PDF
Advanced MongoDB Aggregation Pipelines
PPTX
HTML5 Programming
PPTX
Multi tenancy
PPTX
Node.js
PPTX
Ruby on Rails 3
PPTX
jQuery plugins - templates, data link, globalization
PPTX
Microsoft Windows Azure in short
PPTX
Building real time web apps with Meteor
Advanced MongoDB Aggregation Pipelines
HTML5 Programming
Multi tenancy
Node.js
Ruby on Rails 3
jQuery plugins - templates, data link, globalization
Microsoft Windows Azure in short
Building real time web apps with Meteor

Similar to Applied Redis (20)

PPT
PPTX
PDF
Redis 맛보기
PDF
Redis basics
PPT
Introduction to redis
PPTX
Redis Use Patterns (DevconTLV June 2014)
ODP
An Introduction to REDIS NoSQL database
PDF
Try Redis - interactive Tutorial
PDF
Introduction to Redis
PDF
Redis Workshop on Data Structures, Commands, Administration
PDF
key value dbs , redis , cassandra , their architecture
PDF
PDF
Paris Redis Meetup Introduction
PDF
Redis Cheat Sheet
PPTX
Redis/Lessons learned
PDF
Redis Data Structures
PDF
quickguide-einnovator-9-redis
PPTX
Redis and it's data types
PPTX
Redis 101 Data Structure
PPTX
Introduction to Redis
Redis 맛보기
Redis basics
Introduction to redis
Redis Use Patterns (DevconTLV June 2014)
An Introduction to REDIS NoSQL database
Try Redis - interactive Tutorial
Introduction to Redis
Redis Workshop on Data Structures, Commands, Administration
key value dbs , redis , cassandra , their architecture
Paris Redis Meetup Introduction
Redis Cheat Sheet
Redis/Lessons learned
Redis Data Structures
quickguide-einnovator-9-redis
Redis and it's data types
Redis 101 Data Structure
Introduction to Redis
Ad

Recently uploaded (20)

PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Empathic Computing: Creating Shared Understanding
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
sap open course for s4hana steps from ECC to s4
PDF
cuic standard and advanced reporting.pdf
PDF
Electronic commerce courselecture one. Pdf
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPT
Teaching material agriculture food technology
DOCX
The AUB Centre for AI in Media Proposal.docx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
Spectroscopy.pptx food analysis technology
NewMind AI Weekly Chronicles - August'25-Week II
Dropbox Q2 2025 Financial Results & Investor Presentation
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Empathic Computing: Creating Shared Understanding
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
sap open course for s4hana steps from ECC to s4
cuic standard and advanced reporting.pdf
Electronic commerce courselecture one. Pdf
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Teaching material agriculture food technology
The AUB Centre for AI in Media Proposal.docx
“AI and Expert System Decision Support & Business Intelligence Systems”
Encapsulation_ Review paper, used for researhc scholars
Diabetes mellitus diagnosis method based random forest with bat algorithm
A comparative analysis of optical character recognition models for extracting...
Mobile App Security Testing_ A Comprehensive Guide.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Spectroscopy.pptx food analysis technology
Ad

Applied Redis

  • 1. Applied Redis Barcamp Saigon 2012
  • 7. do it right ( data model & query performance )
  • 9. data structure server
  • 11. #1 strings #2 hashes #3 lists #4 sets #5 sorted sets
  • 12. data examples Keys Values page:index.html <html><head>[…] string login_count 7464 users_logged_in_today {1, 2, 3, 4, 5} set latest_post_ids [201, 204, 205] list user:123:session time => 10927353 hash username => joe users_and_scores joe ~ 1348 sorted set fred ~ 938 chris ~ 2832
  • 13. command examples SET my_key “my value” GET my_key INCR next_post_id EXPIRE my_key 1234 TTL my_key DEL my_key field value EXISTS my_key HSET product:1 id 1 HSET product:1 name “iPad” HSET product:1 available 10
  • 14. commands have its big O ( mostly )
  • 18. #2 who is online # add to friends set SADD users:nam:friends duy SADD users:nam:friends khoi # add to online set SADD online nam SADD online nghia SADD online khoi # get online friends – {khoi} SINTER users:nam:friends online
  • 19. #3 leaderboard ( ranking ) # add to leaderboard (sorted set) ZADD leaderboard <score> <player> # get top 5 ZREVRANGEBYSCORE leaderboard +inf –inf WITHSCORES LIMIT 0 5 # get rank of Khoi ZREVRANK leaderboard Khoi # get 5 players around Khoi ZREVRANGEBYSCORE leaderboard +inf –inf WITHSCORES LIMIT 2 5
  • 20. #4 cross-app communication # web app SUBSCRIBE chat PUBLISH chat “Hello! I’m web app.” # mobile app SUBSCRIBE chat PUBLISH chat “Hi! I’m mobile app.”