diff --git a/snaplet-redis.cabal b/snaplet-redis.cabal
--- a/snaplet-redis.cabal
+++ b/snaplet-redis.cabal
@@ -1,5 +1,5 @@
 Name:                snaplet-redis
-Version:             0.1.1.1
+Version:             0.1.3
 Synopsis:            Redis support for Snap Framework
 Description:         This package provides a snaplet which exposes
                      interface to Redis in-memory key-value storage as
@@ -35,5 +35,5 @@
     hedis               == 0.6.*,
     mtl                 >= 2 && < 3,
     network             == 2.4.*,
-    snap                >= 0.11 && < 0.13,
+    snap                >= 0.11 && < 0.14,
     transformers        == 0.3.*
diff --git a/src/Snap/Snaplet/RedisDB.hs b/src/Snap/Snaplet/RedisDB.hs
--- a/src/Snap/Snaplet/RedisDB.hs
+++ b/src/Snap/Snaplet/RedisDB.hs
@@ -11,6 +11,7 @@
 module Snap.Snaplet.RedisDB
     (RedisDB
     , runRedisDB
+    , redisConnection
     , redisDBInit
     , redisDBInitConf)
 
@@ -35,6 +36,11 @@
 
 makeLenses ''RedisDB
 
+------------------------------------------------------------------------------
+-- | A lens to retrieve the connection to Redis from the 'RedisDB'
+-- wrapper.
+redisConnection :: Simple Lens RedisDB Connection
+redisConnection = connection
 
 ------------------------------------------------------------------------------
 -- | Perform action using Redis connection from RedisDB snaplet pool
@@ -56,7 +62,7 @@
 -- of the Redis snaplet config (e.g. ./snaplets/redis/devel.cfg).
 --
 -- Every field is optional and defaults to defaultConnectInfo values.
--- 
+--
 -- > redis {
 -- >     host = "192.168.0.42"
 -- >     port = 31415
