Go to file
2010-09-06 10:12:44 +02:00
client-libraries client-libraries directory readded 2009-11-03 12:05:13 +01:00
design-documents Added more information about slave election in Redis Cluster alternative doc 2010-04-29 15:39:11 +02:00
doc Fix for solaris compilation bug Issue 325 2010-09-06 10:12:44 +02:00
src Fix for solaris compilation bug Issue 325 2010-09-06 10:12:44 +02:00
tests resolved conflict merging pietern/bpop-timeout 2010-08-31 11:23:12 +02:00
utils changed the comments on top of redis-copy.rb to reflect what the program really does 2010-08-24 10:10:01 +02:00
.gitignore gitignore modified 2010-07-01 14:41:03 +02:00
BUGS first commit 2009-03-22 10:30:00 +01:00
Changelog Make log target fixed 2010-07-01 14:45:37 +02:00
COPYING first commit 2009-03-22 10:30:00 +01:00
INSTALL INSTALL file added BETATESTING.txt removed 2010-07-05 20:37:20 +02:00
Makefile Make install fixed using a dummy taget 2010-07-06 19:10:20 +02:00
README We finally have an half decent README! (Issue 277) 2010-08-31 11:42:52 +02:00
redis.conf redis.conf new features the new option, a minor typo preventing the compilation fixed 2010-05-28 10:48:04 +02:00
TODO TODO list modified, trivial change to source code 2010-07-16 23:56:18 +02:00

Where to find complete Redis documentation?
-------------------------------------------

This README is just a fast "quick start" document. You can find more detailed
documentation here:

1) http://code.google.com/p/redis
2) Check the 'doc' directory. doc/README.html is a good starting point :)

Building Redis
--------------

It is as simple as:

    % make

Redis is just a single binary, but if you want to install it you can use
the "make install" target that will copy the binary in /usr/local/bin
for default.

You can run a 32 bit Redis binary using:

    % make 32bit

After you build Redis is a good idea to test it, using:

    % make test

Running Redis
-------------

To run Redis with the default configuration just type:

    % cd src
    % ./redis-server
    
If you want to provide your redis.conf, you have to run it using an additional
parameter (the path of the configuration file):

    % cd src
    % ./redis-server /path/to/redis.conf

Playing with Redis
------------------

You can use redis-cli to play with Redis. Start a redis-server instance,
then in another terminal try the following:

    % cd src
    % ./redis-cli
    redis> ping
    PONG
    redis> set foo bar
    OK
    redis> get foo
    "bar"
    redis> incr mycounter
    (integer) 1
    redis> incr mycounter
    (integer) 2
    redis> 

You can find the list of all the available commands here:

    http://code.google.com/p/redis/wiki/CommandReference

Enjoy!