X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/924aa408b99837036b679bd3895f836af6bc763f..47868511523c855799c315977b5d480f6f15a4be:/doc/QuickStart.html diff --git a/doc/QuickStart.html b/doc/QuickStart.html index 8d25145e..f4b93361 100644 --- a/doc/QuickStart.html +++ b/doc/QuickStart.html @@ -16,7 +16,7 @@
+ = Quick Start =
This quickstart is a five minutes howto on how to get started with Redis. For more information on Redis check Redis Documentation Index.Obtain the latest version
The latest stable source distribution of Redis can be obtained at this location as a tarball.$ wget http://redis.googlecode.com/files/redis-1.02.tar.gzThe unstable source code, with more features but not ready for production, can be downloaded using git:$ git clone git://github.com/antirez/redis.git @@ -57,18 +57,7 @@ firstvalue $ ./redis-cli lrange mylist 0 -1 1. thirdvalue 2. secondvalue -Lists (and Sets too) can be sorted:-./redis-cli sort mylist alpha -1. secondvalue -2. thirdvalue -And despite Redis doesn't have integers, you can do some math also:-$ ./redis-cli get mycounter -(nil) -$ ./redis-cli incr mycounter -1 -./redis-cli incr mycounter -2 -Further reading