SlideShare a Scribd company logo
How you
can benefit
from using

Redis

javier ramirez
@supercoco9
Fosdem how you can benefit from redis, javier ramirez @ teowaki
Fosdem how you can benefit from redis, javier ramirez @ teowaki
Fosdem how you can benefit from redis, javier ramirez @ teowaki
Fosdem how you can benefit from redis, javier ramirez @ teowaki
Fosdem how you can benefit from redis, javier ramirez @ teowaki
I was
Lois Lane

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
In the beginner's
mind there are many
possibilities, in the
expert's mind there
are few.
Shunryu Suzuki
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
myth: the bottleneck

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
redis-benchmark -r 1000000 -n 2000000 -t get,set,lpush,lpop,mset -P 16 -q
On my laptop:

SET: 513610 requests per second
GET: 641436 requests per second
LPUSH: 845665 requests per second
LPOP: 783392 requests per second
MSET (10 keys): 89988 requests per second
On a small digital ocean server ($5/month)
SET: 227816 requests per second
GET: 228258 requests per second
LPUSH: 251098 requests per second
LPOP: 251572 requests per second
MSET (10 keys): 43918 requests per second

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
myth: Redis is just like
memcached

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
myth: Redis is for queues

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
open source, BSD licensed, advanced
key-value store. It is often referred to as a
data structure server since keys can contain
strings, hashes, lists, sets and sorted sets.
http://redis.io
started in 2009 by Salvatore Sanfilippo @antirez
104 contributors at

https://github.com/antirez/redis
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
The Redis Manifesto

1.A DSL for Abstract Data Types
2.Memory storage is #1

3.Fundamental data structures for a
fundamental API
4.Two levels of API

5.Code is like a poem; it's not just something
we write to reach some practical result
6.We're against complexity
7.We optimize for joy
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
Redis makes
you think
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
Redis data types
Strings
Hashes
Lists
Sets
Sorted Sets
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
basic commands
Setting/getting/deleting/expiring
Increment/decrement
Pushing/popping
Checking membership, size...

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
much cooler commands
Setting only if exists
Blocking pop
(Blocking) pop from one list, push to another
Get/set string ranges (and bit operations)
Set intersections/diffs (and store)
Pub/sub
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
A chat in 6 lines of code
r=Redis.new driver: :hiredis
r.subscribe “chatrooms:42” do |on|
on.message do |topic, msg|
puts “#{topic}: #{msg}”
end
end

r.publish “chatrooms:42”, “Hello Fosdem”

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
atomicity
single threaded, so no
concurrency problems
transactions and lua
scripts to run multiple
operations atomically

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
Scripting with lua
You can use Lua for scripting Redis when you need to
atomically execute a sequence of commands in which
the output of a command is used as input for another
It reduces the need to use complex lock mechanisms
and simplifies dependencies between clients
You can even extend the functionality of Redis by using
Lua scripts

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
Redis keeps
everything
in memory
all the time
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
Persistance: RDB
Compact binary format
Saves snapshots every few minutes
Good for backups and synchronizing
If Redis crashes, a few minutes worth of
data will be lost

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
Durability: AOF
Log text format
Configurable durability
Large file, can slow down startup
If Redis crashes, typically one second of
data could be lost

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
replication & scaling out
one master, several
read-only slaves
sharding
Twemproxy & redis cluster
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
what's being used for

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
twitter
Every time line (800 tweets
per user) is on redis
5000 writes per second avg
300K reads per second
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
twitter

write API (from browser or client app)
follo
e per
on

user id

tweet id

wer

fanout (flockDB)

metadata
rpushx to Redis

user info from
gizmoduck
(memcached)

javier ramirez

@supercoco9

tweet info from
tweetypie
(memcached + mysql)

https://teowaki.com

your twitter
timeline

FOSDEM 2014
World Of Warcraft
Blizzard is quite secretive about it
Known to have at least 8 servers with 64Gb each to
serve user avatars
Known to have seen 1.000.000 users concurrently in
the Asian version of the game

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
pinterest object graph
per user
Redis SortedSet, with timestamp as the score to
store the users followed explicitly
store the users followed implicitly
store the user’s explicit followers
store the user’s implicit followers
store boards followed explicitly
Redis set to store boards unfollowed explicitly
per board
Redis Hash to store a board’s explicit followers
Redis Set to store a board’s explicit unfollowers
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
viacom
Object dependency graph. Cache on steroids
Redis as a queue for background jobs
Activity tracking and view counts buffering before saving
to mysql
Lua script working on a slave to recalculate ranking and
popularity of contents, then send the data to master.
The new process takes 1/60th less than the old one in
mysql

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
stack overflow
Three level cache:

local cache (no persistence)

sessions, and pending view count updates

site cache

hot question id lists, user acceptance rates...

global cache (separate Redis DB)
Inboxes, API usage quotas...

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
youporn
Most data is found in hashes with ordered sets used to
know what data to show.
zInterStore on: videos:filters:released,
Videos:filters:orientation:straight,Videos:filters:categorie
s:{category_id}, Videos:ordering:rating
Then perform a zRange to get the pages we want and
get the list of video_ids back.
Then start a pipeline and get all the videos from hashes.
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
github
Git as a service internally. Redis is used for
storing routing info matching user
repositories to server names

hipchat
Redis for caching. Information like which
users are in which rooms, presence
information, who is online, etc, so it doesn’t
matter which XMPP server you connect to.
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
when things go wrong

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
the instagram case
moving from redis to
cassandra: 75% savings on
servers
lesson learnt:
know when redis is not appropriate
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
the twilio case
credit card hell

lesson learnt:
know what you are doing.
Don't change config on the fly
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
Numbers can be scary
Twitter: 2TB RAM for Redis on its own servers
Blizzard: At least 8 servers with 64Gb each
Pinteres:t 110 Redis instances
Instagram: 1.2 TB of data

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
openredis
redis as a service on AWS
serving over 1000
customers with a single
machine
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
how teowaki is using redis

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
Abusing sidekiq/resque
keep track of every activity in the system, even if you
don't need them all right now:
- every page view
- every API request
- every time a record is created/updated/deleted
benefits:
- highly decoupled system
- easier to divide into services
- you can add behaviour without changing your app
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
intermediate cache
* As a very fast lightweight storage for analytics data before
sending them to our google bigquery based solution
* As a cache for attributes frequently looked up in join tables
(names, nicknames, guids, delegated or included
model names...)

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
Some of our uses of Lua
Expiring attributes inside a Redis hash
Inserting notifications into a list only if there are not
pending notifications from the same user for the
same scope
Paginating a list by an attribute
Manipulating JSON directly at the Redis layer

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
counters
Atomic counters can be safely invoked concurrently
from anywhere, so you can implement “like”
features, global sequences or usage monitoring
systems in highly concurrent applications for free.
You can share your counters with any other internal
application and still be sure they won't collide.

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
Temporary data
Redis allows us to self expire keys after a time has
passed. You can use this mechanism for a simple
cache
If you operate on a key with expiration time, you
can change its value and still keep the expiration
going. By combining a decrementing counter with
an expiration time, implementing usage quotas is
trivial
Also, you can inspect which keys you have in your
server efficiently using SCAN commands
javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
nginx + lua + redis
apache + mruby + redis
Multiple levels of cache by using Redis on the webserver/
middleware layer
http://wiki.nginx.org/HttpRedis

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
summarizing
* Redis is more powerful than it seems
* Very fast, easy to use, simple, good documentation
* In-memory data structures, distributed, shared and persisted
* Good as data store, intermediate data store, cache or queue
* Lots of use cases, both in huge and smaller systems

You should probably use it a lot more

javier ramirez

@supercoco9

https://teowaki.com

FOSDEM 2014
Find related links at
https://teowaki.com/teams/javier-community/link-categories/redis

Dank u.
Merci.
If you enjoyed this talk, please sign up for
https://teowaki.com

Javier Ramírez
@supercoco9
FOSDEM 2014

More Related Content

PDF
How you can benefit from using Redis - Ramirez
PPT
WE18_Performance_Up.ppt
PPT
are available here
PDF
[MathWorks] Versioning Infrastructure
PDF
Using aphace-as-proxy-server
PDF
Redundancy Rocks. Redundancy Rocks.
PPT
Full Web Stack Security
PDF
Windows Server 2016 Webinar
How you can benefit from using Redis - Ramirez
WE18_Performance_Up.ppt
are available here
[MathWorks] Versioning Infrastructure
Using aphace-as-proxy-server
Redundancy Rocks. Redundancy Rocks.
Full Web Stack Security
Windows Server 2016 Webinar

What's hot (20)

PPT
Securing Apache Web Servers
DOCX
Installing lemp with ssl and varnish on Debian 9
ODP
Drupal Efficiency - Coding, Deployment, Scaling
PPTX
Alfresco tuning part1
PPTX
Real World Lessons on the Pain Points of Node.js Applications
PPT
Performance_Up.ppt
PPT
Presentation iv implementasi 802x eap tls peap mscha pv2
KEY
Site Performance - From Pinto to Ferrari
PPTX
WAF Bypass Techniques - Using HTTP Standard and Web Servers’ Behaviour
PPTX
Lessons from running potentially malicious code inside containers
PDF
RIPE 71 and IETF 94 reports webinar
PDF
Pandora FMS: Raven DB Plugin
PDF
BIND 9 logging best practices
KEY
Apache Wizardry - Ohio Linux 2011
PDF
Keeping DNS server up-and-running with “runit
PDF
Kea DHCP – the new open source DHCP server from ISC
PDF
DNSTap Webinar
DOC
Nginx 0.8.x + php 5.2.13 (fast cgi) setup web server
PDF
What is new in BIND 9.11?
PPT
Roy foubister (hosting high traffic sites on a tight budget)
Securing Apache Web Servers
Installing lemp with ssl and varnish on Debian 9
Drupal Efficiency - Coding, Deployment, Scaling
Alfresco tuning part1
Real World Lessons on the Pain Points of Node.js Applications
Performance_Up.ppt
Presentation iv implementasi 802x eap tls peap mscha pv2
Site Performance - From Pinto to Ferrari
WAF Bypass Techniques - Using HTTP Standard and Web Servers’ Behaviour
Lessons from running potentially malicious code inside containers
RIPE 71 and IETF 94 reports webinar
Pandora FMS: Raven DB Plugin
BIND 9 logging best practices
Apache Wizardry - Ohio Linux 2011
Keeping DNS server up-and-running with “runit
Kea DHCP – the new open source DHCP server from ISC
DNSTap Webinar
Nginx 0.8.x + php 5.2.13 (fast cgi) setup web server
What is new in BIND 9.11?
Roy foubister (hosting high traffic sites on a tight budget)
Ad

Similar to Fosdem how you can benefit from redis, javier ramirez @ teowaki (20)

PDF
Por que deberias haberle pedido redis a los reyes magos
PDF
API Analytics with Redis and Bigquery. NoSQLmatters Cologne '14 edition. Javi...
PDF
How you can benefit from using Redis. Javier Ramirez, teowaki, at Codemotion ...
PPTX
Your Inner Sysadmin - MidwestPHP 2015
PPTX
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
PDF
Your Inner Sysadmin - LonestarPHP 2015
PDF
api analytics redis bigquery. Lrug
ODP
Drupal Efficiency using open source technologies from Sun
ODP
Why Sun for Drupal?
PPTX
How to Build a High Performance Application Using Cloud Foundry and Redis (Cl...
PDF
API analytics with Redis and Google Bigquery. NoSQL matters edition
PDF
Caching objects-in-memory
PDF
Scaling PHP apps
PPTX
Liberty Deep Dive
PPTX
Brian Bulkowski : what startups can learn from real-time bidding
PDF
Scaleable PHP Applications in Kubernetes
PDF
Accelerating Analytics with EMR on your S3 Data Lake
PPTX
Introduction to redis
ODP
Big Data analytics with Nginx, Logstash, Redis, Google Bigquery and Neo4j, ja...
PDF
Fun with ruby and redis, arrrrcamp edition, javier_ramirez, teowaki
Por que deberias haberle pedido redis a los reyes magos
API Analytics with Redis and Bigquery. NoSQLmatters Cologne '14 edition. Javi...
How you can benefit from using Redis. Javier Ramirez, teowaki, at Codemotion ...
Your Inner Sysadmin - MidwestPHP 2015
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
Your Inner Sysadmin - LonestarPHP 2015
api analytics redis bigquery. Lrug
Drupal Efficiency using open source technologies from Sun
Why Sun for Drupal?
How to Build a High Performance Application Using Cloud Foundry and Redis (Cl...
API analytics with Redis and Google Bigquery. NoSQL matters edition
Caching objects-in-memory
Scaling PHP apps
Liberty Deep Dive
Brian Bulkowski : what startups can learn from real-time bidding
Scaleable PHP Applications in Kubernetes
Accelerating Analytics with EMR on your S3 Data Lake
Introduction to redis
Big Data analytics with Nginx, Logstash, Redis, Google Bigquery and Neo4j, ja...
Fun with ruby and redis, arrrrcamp edition, javier_ramirez, teowaki
Ad

More from javier ramirez (20)

PDF
The Future of Fast Databases: Lessons from a Decade of QuestDB
PDF
Cómo hemos implementado semántica de "Exactly Once" en nuestra base de datos ...
PDF
How We Added Replication to QuestDB - JonTheBeach
PDF
The Building Blocks of QuestDB, a Time Series Database
PDF
¿Se puede vivir del open source? T3chfest
PDF
QuestDB: The building blocks of a fast open-source time-series database
PDF
Como creamos QuestDB Cloud, un SaaS basado en Kubernetes alrededor de QuestDB...
PDF
Ingesting Over Four Million Rows Per Second With QuestDB Timeseries Database ...
PDF
Deduplicating and analysing time-series data with Apache Beam and QuestDB
PDF
Your Database Cannot Do this (well)
PDF
Your Timestamps Deserve Better than a Generic Database
PDF
Cómo se diseña una base de datos que pueda ingerir más de cuatro millones de ...
PDF
QuestDB-Community-Call-20220728
PDF
Processing and analysing streaming data with Python. Pycon Italy 2022
PDF
QuestDB: ingesting a million time series per second on a single instance. Big...
PDF
Servicios e infraestructura de AWS y la próxima región en Aragón
PPTX
Primeros pasos en desarrollo serverless
PDF
How AWS is reinventing the cloud
PDF
Analitica de datos en tiempo real con Apache Flink y Apache BEAM
PDF
Getting started with streaming analytics
The Future of Fast Databases: Lessons from a Decade of QuestDB
Cómo hemos implementado semántica de "Exactly Once" en nuestra base de datos ...
How We Added Replication to QuestDB - JonTheBeach
The Building Blocks of QuestDB, a Time Series Database
¿Se puede vivir del open source? T3chfest
QuestDB: The building blocks of a fast open-source time-series database
Como creamos QuestDB Cloud, un SaaS basado en Kubernetes alrededor de QuestDB...
Ingesting Over Four Million Rows Per Second With QuestDB Timeseries Database ...
Deduplicating and analysing time-series data with Apache Beam and QuestDB
Your Database Cannot Do this (well)
Your Timestamps Deserve Better than a Generic Database
Cómo se diseña una base de datos que pueda ingerir más de cuatro millones de ...
QuestDB-Community-Call-20220728
Processing and analysing streaming data with Python. Pycon Italy 2022
QuestDB: ingesting a million time series per second on a single instance. Big...
Servicios e infraestructura de AWS y la próxima región en Aragón
Primeros pasos en desarrollo serverless
How AWS is reinventing the cloud
Analitica de datos en tiempo real con Apache Flink y Apache BEAM
Getting started with streaming analytics

Recently uploaded (20)

PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Chapter 3 Spatial Domain Image Processing.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
20250228 LYD VKU AI Blended-Learning.pptx
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Encapsulation_ Review paper, used for researhc scholars
A comparative analysis of optical character recognition models for extracting...
Agricultural_Statistics_at_a_Glance_2022_0.pdf
The AUB Centre for AI in Media Proposal.docx
The Rise and Fall of 3GPP – Time for a Sabbatical?
NewMind AI Weekly Chronicles - August'25-Week II
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Per capita expenditure prediction using model stacking based on satellite ima...
Dropbox Q2 2025 Financial Results & Investor Presentation
MYSQL Presentation for SQL database connectivity
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Review of recent advances in non-invasive hemoglobin estimation
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Chapter 3 Spatial Domain Image Processing.pdf

Fosdem how you can benefit from redis, javier ramirez @ teowaki

  • 1. How you can benefit from using Redis javier ramirez @supercoco9
  • 7. I was Lois Lane javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 8. In the beginner's mind there are many possibilities, in the expert's mind there are few. Shunryu Suzuki javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 9. myth: the bottleneck javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 10. redis-benchmark -r 1000000 -n 2000000 -t get,set,lpush,lpop,mset -P 16 -q On my laptop: SET: 513610 requests per second GET: 641436 requests per second LPUSH: 845665 requests per second LPOP: 783392 requests per second MSET (10 keys): 89988 requests per second On a small digital ocean server ($5/month) SET: 227816 requests per second GET: 228258 requests per second LPUSH: 251098 requests per second LPOP: 251572 requests per second MSET (10 keys): 43918 requests per second javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 11. myth: Redis is just like memcached javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 12. myth: Redis is for queues javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 13. open source, BSD licensed, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets. http://redis.io started in 2009 by Salvatore Sanfilippo @antirez 104 contributors at https://github.com/antirez/redis javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 14. The Redis Manifesto 1.A DSL for Abstract Data Types 2.Memory storage is #1 3.Fundamental data structures for a fundamental API 4.Two levels of API 5.Code is like a poem; it's not just something we write to reach some practical result 6.We're against complexity 7.We optimize for joy javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 15. Redis makes you think javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 16. Redis data types Strings Hashes Lists Sets Sorted Sets javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 17. basic commands Setting/getting/deleting/expiring Increment/decrement Pushing/popping Checking membership, size... javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 18. much cooler commands Setting only if exists Blocking pop (Blocking) pop from one list, push to another Get/set string ranges (and bit operations) Set intersections/diffs (and store) Pub/sub javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 19. A chat in 6 lines of code r=Redis.new driver: :hiredis r.subscribe “chatrooms:42” do |on| on.message do |topic, msg| puts “#{topic}: #{msg}” end end r.publish “chatrooms:42”, “Hello Fosdem” javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 20. atomicity single threaded, so no concurrency problems transactions and lua scripts to run multiple operations atomically javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 21. Scripting with lua You can use Lua for scripting Redis when you need to atomically execute a sequence of commands in which the output of a command is used as input for another It reduces the need to use complex lock mechanisms and simplifies dependencies between clients You can even extend the functionality of Redis by using Lua scripts javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 22. Redis keeps everything in memory all the time javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 23. Persistance: RDB Compact binary format Saves snapshots every few minutes Good for backups and synchronizing If Redis crashes, a few minutes worth of data will be lost javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 24. Durability: AOF Log text format Configurable durability Large file, can slow down startup If Redis crashes, typically one second of data could be lost javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 25. replication & scaling out one master, several read-only slaves sharding Twemproxy & redis cluster javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 26. what's being used for javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 27. twitter Every time line (800 tweets per user) is on redis 5000 writes per second avg 300K reads per second javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 28. twitter write API (from browser or client app) follo e per on user id tweet id wer fanout (flockDB) metadata rpushx to Redis user info from gizmoduck (memcached) javier ramirez @supercoco9 tweet info from tweetypie (memcached + mysql) https://teowaki.com your twitter timeline FOSDEM 2014
  • 29. World Of Warcraft Blizzard is quite secretive about it Known to have at least 8 servers with 64Gb each to serve user avatars Known to have seen 1.000.000 users concurrently in the Asian version of the game javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 30. pinterest object graph per user Redis SortedSet, with timestamp as the score to store the users followed explicitly store the users followed implicitly store the user’s explicit followers store the user’s implicit followers store boards followed explicitly Redis set to store boards unfollowed explicitly per board Redis Hash to store a board’s explicit followers Redis Set to store a board’s explicit unfollowers javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 31. viacom Object dependency graph. Cache on steroids Redis as a queue for background jobs Activity tracking and view counts buffering before saving to mysql Lua script working on a slave to recalculate ranking and popularity of contents, then send the data to master. The new process takes 1/60th less than the old one in mysql javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 32. stack overflow Three level cache: local cache (no persistence) sessions, and pending view count updates site cache hot question id lists, user acceptance rates... global cache (separate Redis DB) Inboxes, API usage quotas... javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 33. youporn Most data is found in hashes with ordered sets used to know what data to show. zInterStore on: videos:filters:released, Videos:filters:orientation:straight,Videos:filters:categorie s:{category_id}, Videos:ordering:rating Then perform a zRange to get the pages we want and get the list of video_ids back. Then start a pipeline and get all the videos from hashes. javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 34. github Git as a service internally. Redis is used for storing routing info matching user repositories to server names hipchat Redis for caching. Information like which users are in which rooms, presence information, who is online, etc, so it doesn’t matter which XMPP server you connect to. javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 35. when things go wrong javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 36. the instagram case moving from redis to cassandra: 75% savings on servers lesson learnt: know when redis is not appropriate javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 37. the twilio case credit card hell lesson learnt: know what you are doing. Don't change config on the fly javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 38. Numbers can be scary Twitter: 2TB RAM for Redis on its own servers Blizzard: At least 8 servers with 64Gb each Pinteres:t 110 Redis instances Instagram: 1.2 TB of data javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 39. openredis redis as a service on AWS serving over 1000 customers with a single machine javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 40. how teowaki is using redis javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 41. Abusing sidekiq/resque keep track of every activity in the system, even if you don't need them all right now: - every page view - every API request - every time a record is created/updated/deleted benefits: - highly decoupled system - easier to divide into services - you can add behaviour without changing your app javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 42. intermediate cache * As a very fast lightweight storage for analytics data before sending them to our google bigquery based solution * As a cache for attributes frequently looked up in join tables (names, nicknames, guids, delegated or included model names...) javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 43. Some of our uses of Lua Expiring attributes inside a Redis hash Inserting notifications into a list only if there are not pending notifications from the same user for the same scope Paginating a list by an attribute Manipulating JSON directly at the Redis layer javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 44. counters Atomic counters can be safely invoked concurrently from anywhere, so you can implement “like” features, global sequences or usage monitoring systems in highly concurrent applications for free. You can share your counters with any other internal application and still be sure they won't collide. javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 45. Temporary data Redis allows us to self expire keys after a time has passed. You can use this mechanism for a simple cache If you operate on a key with expiration time, you can change its value and still keep the expiration going. By combining a decrementing counter with an expiration time, implementing usage quotas is trivial Also, you can inspect which keys you have in your server efficiently using SCAN commands javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 46. nginx + lua + redis apache + mruby + redis Multiple levels of cache by using Redis on the webserver/ middleware layer http://wiki.nginx.org/HttpRedis javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 47. summarizing * Redis is more powerful than it seems * Very fast, easy to use, simple, good documentation * In-memory data structures, distributed, shared and persisted * Good as data store, intermediate data store, cache or queue * Lots of use cases, both in huge and smaller systems You should probably use it a lot more javier ramirez @supercoco9 https://teowaki.com FOSDEM 2014
  • 48. Find related links at https://teowaki.com/teams/javier-community/link-categories/redis Dank u. Merci. If you enjoyed this talk, please sign up for https://teowaki.com Javier Ramírez @supercoco9 FOSDEM 2014