]> git.saurik.com Git - redis.git/blame_incremental - README
Added sdscatsds() to sds.c/h
[redis.git] / README
... / ...
CommitLineData
1Where to find complete Redis documentation?
2-------------------------------------------
3
4This README is just a fast "quick start" document. You can find more detailed
5documentation at http://redis.io
6
7Building Redis
8--------------
9
10It is as simple as:
11
12 % make
13
14You can run a 32 bit Redis binary using:
15
16 % make 32bit
17
18After building Redis is a good idea to test it, using:
19
20 % make test
21
22NOTE: if after building Redis with a 32 bit target you need to rebuild it
23 with a 64 bit target you need to perform a "make clean" in the root
24 directory of the Redis distribution.
25
26Allocator
27---------
28
29Selecting a non-default memory allocator when building Redis is done by setting
30the `MALLOC` environment variable. Redis is compiled and linked against libc
31malloc by default, with the exception of jemalloc being the default on Linux
32systems. This default was picked because jemalloc has proven to have fewer
33fragmentation problems than libc malloc.
34
35To force compiling against libc malloc, use:
36
37 % make MALLOC=libc
38
39To compile against jemalloc on Mac OS X systems, use:
40
41 % make MALLOC=jemalloc
42
43Verbose build
44-------------
45
46Redis will build with a user friendly colorized output by default.
47If you want to see a more verbose output use the following:
48
49 % make V=1
50
51Running Redis
52-------------
53
54To run Redis with the default configuration just type:
55
56 % cd src
57 % ./redis-server
58
59If you want to provide your redis.conf, you have to run it using an additional
60parameter (the path of the configuration file):
61
62 % cd src
63 % ./redis-server /path/to/redis.conf
64
65Playing with Redis
66------------------
67
68You can use redis-cli to play with Redis. Start a redis-server instance,
69then in another terminal try the following:
70
71 % cd src
72 % ./redis-cli
73 redis> ping
74 PONG
75 redis> set foo bar
76 OK
77 redis> get foo
78 "bar"
79 redis> incr mycounter
80 (integer) 1
81 redis> incr mycounter
82 (integer) 2
83 redis>
84
85You can find the list of all the available commands here:
86
87 http://redis.io/commands
88
89Installing Redis
90-----------------
91
92In order to install Redis binaries into /usr/local/bin just use:
93
94 % make install
95
96You can use "make PREFIX=/some/other/directory install" if you wish to use a
97different destination.
98
99Make install will just install binaries in your system, but will not configure
100init scripts and configuration files in the appropriate place. This is not
101needed if you want just to play a bit with Redis, but if you are installing
102it the proper way for a production system, we have a script doing this
103for Ubuntu and Debian systems:
104
105 % cd utils
106 % ./install_server
107
108The script will ask you a few questions and will setup everything you need
109to run Redis properly as a background daemon that will start again on
110system reboots.
111
112You'll be able to stop and start Redis using the script named
113/etc/init.d/redis_<portnumber>, for instance /etc/init.d/redis_6379.
114
115Enjoy!