From 9eb956f059481d4aedfa2718844fd4afd0205d01 Mon Sep 17 00:00:00 2001 From: Zhe Wu Date: Thu, 20 Sep 2012 17:18:26 +0800 Subject: [PATCH] Update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b12d3ab..392794a 100644 --- a/README.md +++ b/README.md @@ -44,12 +44,12 @@ Usage Want sessions to automatically expire? # expire after 12 hours - (wrap-session your-app {:store (redis-store store {:expire-secs (* 3600 12)})}) + (wrap-session your-app {:store (redis-store STORE {:expire-secs (* 3600 12)})}) You can also change the prefix (default to `session`) for the keys in redis: - (wrap-session your-app {:store (redis-store store {:prefix "i-am-prefix"})}) + (wrap-session your-app {:store (redis-store STORE {:prefix "i-am-prefix"})}) License =======