README.rdoc in redis-dump-0.1.5 vs README.rdoc in redis-dump-0.3.0
- old
+ new
@@ -1,14 +1,12 @@
-= Redis-Dump v0.1 ALPHA
+= Redis-Dump v0.3 ALPHA
<i>Backup and restore your Redis data to and from JSON.</i>
-<b>NOTE: This is alpha software. DO NOT RELY ON IT FOR PRECIOUS THINGS!!</b>
+<b>NOTE: This is alpha software. TEST IT BEFORE RELYING ON IT.</b>
-<b>ALSO: This is an unofficial tool.</b>
-
== Usage
There are two executables: <tt>redis-dump</tt> and <tt>redis-load</tt>.
$ redis-dump
@@ -22,10 +20,10 @@
All redis datatypes are output to a simple JSON object. All objects have the following 5 fields:
* db (Integer)
* key (String)
-* ttl (Integer): The amount of time in seconds that the key will live . If no expire is set, it's -1.
+* ttl (Integer): The amount of time in seconds that the key will live. If no expire is set, it's -1.
* type (String), one of: string, list, set, zset, hash, none.
* value (String): A JSON-encoded string. For keys of type list, set, zset, and hash, the data is given a specific structure (see below).
Here are examples of each datatype: