redis: an introduction

Post on 10-Jul-2015

282 Views

Category:

Technology

2 Downloads

Preview:

Click to see full reader

TRANSCRIPT

An introduction

March 2014 – Septeni Technology

thao_dx@septeni-technology.jp

Over view

• Memcache-ish in-memory key/value store

• But values are complex data types:o blobs

o lists

o sets

o sorted sets

o hash tables

• And it has persistence.

• Open source; very helpful and friendly community.

• Used in the real world: pinterest, github, craigslist, bit.ly, engineyard...

Key Features and Cool Stuff

• Speed

• Master/Slave Replication

• All data is eventually persistent

• Handles huge workloads easily

• Variety of Supported Languages

• Support for atomic operations, transactions

• Has pub/sub functionality

• Sharding

List operations

• Lists are your ordinary linked lists.

• You can push and pop at both sides, extract range, resize..

• Random access

• BLPOP: Blocking POP - wait until a list has elements and pop

them. Useful for realtime stuff.

Set operations

• Sets are an unordered collection of Strings

• Sets can be intersected/diffed /union'ed server side.

• Can be useful as keys when building complex schemata.

Sorted Sets• Same as sets, but with score per element

• Ranked ranges, aggregation of scores on INTERSECT

• Can be used as ordered keys in complex schemata

• Think timestamps, inverted index, geohashing, ip ranges

Hashes

• Hash tables as values

• Think of an object store with atomic access to object

• Members

PubSub - Publish/Subscribe

• Clients can subscribe to channels or patterns and receive

• Notifications when messages are sent to channels.

• Use cases: chats, notifycation, real-time applications..

Common Web Use Cases Solved in Redis

Show latest items listings in your home page

This is a live in-memory cache and is very fast. LPUSH isused to insert a content ID at the head of the list storedat a key. LTRIM is used to limit the number of items inthe list to 5000. If the user needs to page beyond thiscache only then are they sent to the database.

Leaderboards and related problems

A leader board is a set sorted by score. The ZADDcommands implements this directly and theZREVRANGE command can be used to get the top 100users by score and ZRANK can be used to get a usersrank. Very direct and easy.

Counting stuff

Keeping stats of all kinds iscommon, say you want to knowwhen to block an IP addresss. TheINCRBY command makes it easy toatomically keep counters; GETSETto atomically clear the counter; theexpire attribute can be used to tellwhen an key should be deleted.

Caching

Discussion

Thank you.

top related