X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/32c3a426a6f0b4f99e46dfb805dbca522bce7f8a..43e5ccdf57e2144a8a43c04c5a64e91a155a78fb:/doc/QuickStart.html diff --git a/doc/QuickStart.html b/doc/QuickStart.html new file mode 100644 index 00000000..be0e4424 --- /dev/null +++ b/doc/QuickStart.html @@ -0,0 +1,51 @@ + + + +
+ + + ++git clone git://github.com/antirez/redis.git +
+tar xvzf redis-1.0.0.tar.gz +cd redis-1.0.0 +make +In order to test if the Redis server is working well in your computer make sure to run
make test
and check that all the tests are passed.+./redis-server +With the default configuration Redis will log to the standard output so you can check what happens. Later, when you'll ready to install Redis in production, you may want to use a configuration file. The
redis.conf
file included in the source code distribution is a starting point, you should be able to modify it in order do adapt it to your needs without troubles reading the comments inside the file. In order to start Redis using a configuration file just pass the file name as the sole argument when starting the server:+./redis-server redis.conf +
redis-cli
utility included in the source distribution (and automatically compiled when you compile Redis). For instance to set a key and read back the value use the following:+./redis-cli set mykey somevalue +OK +./redis-cli get mykey +somevalue +