Initial commit
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000..a81ff57
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,48 @@
+# Redis

+

+key value storage

+

+## Sample pillars

+

+Redis localhost server

+

+    redis:

+      server:

+        enabled: true

+        bind:

+          address: 127.0.0.1 

+          port: 6379

+          protocol: tcp

+

+Redis world open

+

+    redis:

+      server:

+        enabled: true

+        bind:

+          address: 0.0.0.0 

+          port: 6379

+          protocol: tcp

+

+Redis modes

+

+    redis:

+      server:

+        enabled: true

+        appendfsync: no | everysec | always

+

+## Command usage

+

+Removes data from your connection's CURRENT database.

+

+    > redis-cli FLUSHDB

+

+Removes data from ALL databases.

+

+    > redis-cli FLUSHALL

+

+## Read more

+

+* http://redis.io/topics/admin

+* http://redis.io/topics/quickstart

+* http://redis.io/topics/persistence