Skip to content

Instantly share code, notes, and snippets.

@penguinco
Created October 18, 2011 05:54
Show Gist options
  • Save penguinco/1294709 to your computer and use it in GitHub Desktop.
Save penguinco/1294709 to your computer and use it in GitHub Desktop.
redis
$ wget http://redis.googlecode.com/files/redis-2.4.1.tar.gz
$ tar xzf redis-2.4.1.tar.gz
$ cd redis-2.4.1
$ make
$ make test
$ vi redis.conf
$ src/redis-server redis.conf
$ gem install redis
$ irb
> redis = Redis.new(:path => "/tmp/redis.sock")
=> #<Redis client v2.2.2 connected to redis:///tmp/redis.sock/0 (Redis v2.4.1)>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment