1 Where to find complete Redis documentation?
 
   2 -------------------------------------------
 
   4 This README is just a fast "quick start" document. You can find more detailed
 
   7 1) http://code.google.com/p/redis
 
   8 2) Check the 'doc' directory. doc/README.html is a good starting point :)
 
  17 Redis is just a single binary, but if you want to install it you can use
 
  18 the "make install" target that will copy the binary in /usr/local/bin
 
  19 for default. You can also use "make PREFIX=/some/other/directory install"
 
  20 if you wish to use a different destination.
 
  22 You can run a 32 bit Redis binary using:
 
  26 After you build Redis is a good idea to test it, using:
 
  30 Buliding using tcmalloc
 
  31 -----------------------
 
  33 tcmalloc is a fast and space efficient implementation (for little objects)
 
  34 of malloc(). Compiling Redis with it can improve performances and memeory
 
  35 usage. You can read more about it here:
 
  37 http://goog-perftools.sourceforge.net/doc/tcmalloc.html
 
  39 In order to compile Redis with tcmalloc support install tcmalloc on your system
 
  42     % make USE_TCMALLOC=yes
 
  44 Note that you can pass any other target to make, as long as you append
 
  45 USE_TCMALLOC=yes at the end.
 
  50 To run Redis with the default configuration just type:
 
  55 If you want to provide your redis.conf, you have to run it using an additional
 
  56 parameter (the path of the configuration file):
 
  59     % ./redis-server /path/to/redis.conf
 
  64 You can use redis-cli to play with Redis. Start a redis-server instance,
 
  65 then in another terminal try the following:
 
  81 You can find the list of all the available commands here:
 
  83     http://code.google.com/p/redis/wiki/CommandReference