diff --git a/README.md b/README.md index 1537b29..73eefed 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,10 @@ ## Redis `brew install redis` and follow instructions to run -- or equivalent package/manual install for your favorite distro + +To make sure redis is running you can do something like this: +``` +redis-cli +SET hello "world" +GET hello +```