add installation section to README
[ob-redis.git] / README.org
blob9536824fb6f313f73cfe9ffcafe07484330c98ad
1 * About
3 Add Redis commands execution support in Org-mode Babel.
5 This package is referenced from [[https://github.com/krisajenkins/ob-mongo][ob-mongo.el]].
7 * Installation
9 ob-redis.el is available in MELPA.
11 You can install it through:
13 =[M-x package-install ob-redis RET]=
15 * Usage
17 ** example
19 #+BEGIN_EXAMPLE
20 #+BEGIN_SRC redis db: 127.0.0.1:6379
21 SET myname "stardiviner"
22 GET myname
23 #+END_SRC
25 #+RESULTS:
26 : 127.0.0.1:6379> OK
27 : 127.0.0.1:6379> stardiviner
28 : 127.0.0.1:6379> 
29 #+END_EXAMPLE