Skip to content

Instantly share code, notes, and snippets.

@rofr
Created September 7, 2015 14:43
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rofr/215468efb32d4f22dea2 to your computer and use it in GitHub Desktop.
Save rofr/215468efb32d4f22dea2 to your computer and use it in GitHub Desktop.
redis - the machine language of databases
INCR next_user_id //returns 1000
HMSET user:1000 name bart password ¤¤¤hash¤¤¤
HSET users bart 1000
ZADD followers:1000 1401267618 1234
ZADD following:1234 1401267618 1000
INCR next_post_id => 10343
HMSET post:10343 user 1000 time $time body ’Ay Caramba’
RPUSH posts:1000 10343
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment