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

What's hot (20)

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

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

PDF
How you can benefit from using Redis. Javier Ramirez, teowaki, at Codemotion ...
javier ramirez
 
PDF
Fun with Ruby and Redis
javier ramirez
 
PPT
New York REDIS Meetup Welcome Session
Aleksandr Yampolskiy
 
PDF
Introduction to redis - version 2
Dvir Volk
 
PPTX
Get more than a cache back! - ConFoo Montreal
Maarten Balliauw
 
PPTX
RedisConf17 - Redfin - The Real Estate Brokerage and the In-memory Database
Redis Labs
 
PPTX
Introduction to Redis
Ofer Zelig
 
PDF
Fun with ruby and redis, arrrrcamp edition, javier_ramirez, teowaki
javier ramirez
 
PPTX
10 Ways to Scale with Redis - LA Redis Meetup 2019
Dave Nielsen
 
PDF
Mini-Training: Redis
Betclic Everest Group Tech Team
 
PDF
An Introduction to Redis for Developers.pdf
Stephen Lorello
 
PDF
dba_lounge_Iasi: Everybody likes redis
Liviu Costea
 
PDF
Steam Learn: An introduction to Redis
inovia
 
PDF
Redis Everywhere - Sunshine PHP
Ricard Clau
 
PPTX
Why Your MongoDB Needs Redis
Itamar Haber
 
KEY
Blazing Data With Redis (and LEGOS!)
Justin Carmony
 
PPTX
10 Ways to Scale Your Website Silicon Valley Code Camp 2019
Dave Nielsen
 
PDF
Por que deberias haberle pedido redis a los reyes magos
javier ramirez
 
PDF
API analytics with Redis and Google Bigquery. NoSQL matters edition
javier ramirez
 
PDF
Paris Redis Meetup Introduction
Gregory Boissinot
 
How you can benefit from using Redis. Javier Ramirez, teowaki, at Codemotion ...
javier ramirez
 
Fun with Ruby and Redis
javier ramirez
 
New York REDIS Meetup Welcome Session
Aleksandr Yampolskiy
 
Introduction to redis - version 2
Dvir Volk
 
Get more than a cache back! - ConFoo Montreal
Maarten Balliauw
 
RedisConf17 - Redfin - The Real Estate Brokerage and the In-memory Database
Redis Labs
 
Introduction to Redis
Ofer Zelig
 
Fun with ruby and redis, arrrrcamp edition, javier_ramirez, teowaki
javier ramirez
 
10 Ways to Scale with Redis - LA Redis Meetup 2019
Dave Nielsen
 
Mini-Training: Redis
Betclic Everest Group Tech Team
 
An Introduction to Redis for Developers.pdf
Stephen Lorello
 
dba_lounge_Iasi: Everybody likes redis
Liviu Costea
 
Steam Learn: An introduction to Redis
inovia
 
Redis Everywhere - Sunshine PHP
Ricard Clau
 
Why Your MongoDB Needs Redis
Itamar Haber
 
Blazing Data With Redis (and LEGOS!)
Justin Carmony
 
10 Ways to Scale Your Website Silicon Valley Code Camp 2019
Dave Nielsen
 
Por que deberias haberle pedido redis a los reyes magos
javier ramirez
 
API analytics with Redis and Google Bigquery. NoSQL matters edition
javier ramirez
 
Paris Redis Meetup Introduction
Gregory Boissinot
 
Ad

More from javier ramirez (20)

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

Recently uploaded (20)

PDF
ICONIQ State of AI Report 2025 - The Builder's Playbook
Razin Mustafiz
 
PDF
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
PPTX
Smarter Governance with AI: What Every Board Needs to Know
OnBoard
 
PDF
Draugnet: Anonymous Threat Reporting for a World on Fire
treyka
 
PPTX
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
PPTX
Enabling the Digital Artisan – keynote at ICOCI 2025
Alan Dix
 
PDF
Introducing and Operating FME Flow for Kubernetes in a Large Enterprise: Expe...
Safe Software
 
PPTX
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Pitch ...
Michele Kryston
 
PDF
Darley - FIRST Copenhagen Lightning Talk (2025-06-26) Epochalypse 2038 - Time...
treyka
 
PDF
Understanding The True Cost of DynamoDB Webinar
ScyllaDB
 
PDF
How to Comply With Saudi Arabia’s National Cybersecurity Regulations.pdf
Bluechip Advanced Technologies
 
PDF
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PPTX
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Poster...
Michele Kryston
 
PPTX
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
PPTX
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PDF
Enhancing Environmental Monitoring with Real-Time Data Integration: Leveragin...
Safe Software
 
PDF
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
PDF
Pipeline Industry IoT - Real Time Data Monitoring
Safe Software
 
PDF
99 Bottles of Trust on the Wall — Operational Principles for Trust in Cyber C...
treyka
 
ICONIQ State of AI Report 2025 - The Builder's Playbook
Razin Mustafiz
 
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
Smarter Governance with AI: What Every Board Needs to Know
OnBoard
 
Draugnet: Anonymous Threat Reporting for a World on Fire
treyka
 
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
Enabling the Digital Artisan – keynote at ICOCI 2025
Alan Dix
 
Introducing and Operating FME Flow for Kubernetes in a Large Enterprise: Expe...
Safe Software
 
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Pitch ...
Michele Kryston
 
Darley - FIRST Copenhagen Lightning Talk (2025-06-26) Epochalypse 2038 - Time...
treyka
 
Understanding The True Cost of DynamoDB Webinar
ScyllaDB
 
How to Comply With Saudi Arabia’s National Cybersecurity Regulations.pdf
Bluechip Advanced Technologies
 
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Poster...
Michele Kryston
 
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
Enhancing Environmental Monitoring with Real-Time Data Integration: Leveragin...
Safe Software
 
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
Pipeline Industry IoT - Real Time Data Monitoring
Safe Software
 
99 Bottles of Trust on the Wall — Operational Principles for Trust in Cyber C...
treyka
 

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