hedis 0.14.0 → 0.14.1
raw patch · 3 files changed
+8/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG +4/−0
- hedis.cabal +1/−1
- src/Database/Redis/ManualCommands.hs +3/−1
CHANGELOG view
@@ -1,5 +1,9 @@ # Changelog for Hedis +## 0.14.1++* PR #162. Improved documentation for EVALSHA+ ## 0.14.0 * PR #157. Clustering support
hedis.cabal view
@@ -1,5 +1,5 @@ name: hedis-version: 0.14.0+version: 0.14.1 synopsis: Client library for the Redis datastore: supports full command set, pipelining.
src/Database/Redis/ManualCommands.hs view
@@ -360,9 +360,11 @@ where numkeys = toInteger (length keys) +-- | Works like 'eval', but sends the SHA1 hash of the script instead of the script itself.+-- Fails if the server does not recognise the hash, in which case, 'eval' should be used instead. evalsha :: (RedisCtx m f, RedisResult a)- => ByteString -- ^ script+ => ByteString -- ^ base16-encoded sha1 hash of the script -> [ByteString] -- ^ keys -> [ByteString] -- ^ args -> m (f a)