(!) the basic one
(_!_) the fuller one
(.) the flat one
(:) the one plus one, a.k.a colons
(8) the too weird one
(,) the caught in the act one
(;) the 60FPS one
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foo@bar:~$ redis-cli | |
127.0.0.1:6379> dbsize | |
(integer) 0 | |
127.0.0.1:6379> set user:1 1 | |
OK | |
127.0.0.1:6379> set use:the:force luke | |
OK | |
127.0.0.1:6379> set non:user a | |
OK | |
foo@bar:~$ redis-cli --eval scanregex.lua , "^user" |

Ask a Redis Expert Webinar - How to achieve 1.5M ops/sec with Redis: https://www.slideshare.net/itamarhaber/redis-labs-ask-a-redis-expert-webinar-achieving-15-m-ops-per-sec
- Redis Watch Newsletter: https://redislabs.com/redis-watch-archive
- Redis project website: http://redis.io
- Redis GitHub repository: https://github.com/antirez/redis
- Salvatore Sanfilippo's blog: http://antirez.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ii ii ii ii | |
ii ii ii ii | |
ii ii ii | |
i ii ii ii ii i ii iii ii iiii ii ii ii | |
iiiiii iiiiii iiiiiiii ii iiiiii ii ii iiiiiiiiiiiiii iiiiii iiiiiii | |
iiiiiiiiiiiiii iiiiiiiii ii iiiiii ii i ii iiiiiiii iiii iiiiiii iiiiiiii | |
iii iii ii iii iii ii ii i iii ii iiiiii iii ii iii iii iii | |
iii iiiiiiiii ii ii ii iiiii ii iiii ii ii ii ii iii ii ii | |
ii iiiiiiiii ii ii ii iiiii iiiiiiiiii ii ii ii ii ii ii | |
ii iii ii iii ii iii iiiiiiiii iii iii ii iii ii ii |
- Redis Watch - a weekly newsletter about everything Redis: http://bit.ly/RedisWatch
- WiredTiger iiBench Results: https://github.com/wiredtiger/wiredtiger/wiki/iiBench-results
- Redis Website: https://redis.io/
- Redis repository: https://github.com/antirez/redis
- Antirez's blog: http://antirez.com/
- Recorded webinar - How to Achieve 1.5M ops/sec with Redis: https://www.youtube.com/watch?v=yS-Z9JnkWsA
- Try Redis: http://try.redis.io/
- Download Redis Labs Enterprise Cluster: https://redislabs.com/redis-enterprise-downloads
- Redis Clients page: http://redis.io/clients
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foo@bar:~$ redis-cli | |
127.0.0.1:6379> flushall | |
OK | |
127.0.0.1:6379> save | |
OK | |
127.0.0.1:6379> set p persistent | |
OK | |
127.0.0.1:6379> set v volatile | |
OK | |
127.0.0.1:6379> expire v 99999999 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Returns a key's absolute TTL | |
local t = tonumber(redis.call('TTL', KEYS[1])) | |
if t > 0 then | |
t = t + tonumber(redis.call('TIME')[1]) | |
end | |
return t |
"Went up the mountain, spent some time there, a bush or something was burning and I must have inhaled the smoke because I came back down carrying these two slabs of stone...", HippieLogLog
I. I am thy open source, BSD licensed, data structure store
II. Thou shalt have no other data but that which fits in RAM
Ask a Redis Expert Webinar - Why Your MongoDB Needs Redis: http://www.slideshare.net/itamarhaber/why-your-mongodb-needs-redis
- Redis Watch Newsletter: http://bit.ly/RedisWatch
- MongoDB and Redis: a different interpretation of what's wrong with Relational DBs: http://antirez.com/post/MongoDB-and-Redis.html
- Redis project website: http://redis.io
- https://github.com/antirez/redis