1 Where to find complete Redis documentation?
2 -------------------------------------------
4 This README is just a fast "quick start" document. You can find more detailed
5 documentation at http://redis.io
14 Redis is just a single binary, but if you want to install it you can use
15 the "make install" target that will copy the binary in /usr/local/bin
16 for default. You can also use "make PREFIX=/some/other/directory install"
17 if you wish to use a different destination.
19 You can run a 32 bit Redis binary using:
23 After building Redis is a good idea to test it, using:
27 NOTE: if after building Redis with a 32 bit target you need to rebuild it
28 with a 64 bit target you need to perform a "make clean" in the root
29 directory of the Redis distribution.
34 By default Redis compiles and links against jemalloc under Linux, since
35 glibc malloc() has memory fragmentation problems.
37 To force a libc malloc() build use:
39 make FORCE_LIBC_MALLOC=yes
41 In all the other non Linux systems the libc malloc() is used by default.
43 On Mac OS X you can force a jemalloc based build using the following:
50 Redis will build with a user friendly colorized output by default.
51 If you want to see a more verbose output use the following:
58 To run Redis with the default configuration just type:
63 If you want to provide your redis.conf, you have to run it using an additional
64 parameter (the path of the configuration file):
67 % ./redis-server /path/to/redis.conf
72 You can use redis-cli to play with Redis. Start a redis-server instance,
73 then in another terminal try the following:
89 You can find the list of all the available commands here:
91 http://redis.io/commands