hedis-pile 0.5.0 → 0.5.1
raw patch · 2 files changed
+7/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- hedis-pile.cabal +1/−1
- src/Database/Redis/Pile.hs +6/−3
hedis-pile.cabal view
@@ -1,5 +1,5 @@ name: hedis-pile -version: 0.5.0 +version: 0.5.1 cabal-version: >= 1.8 build-type: Simple stability: Experimental
src/Database/Redis/Pile.hs view
@@ -40,11 +40,14 @@ -- -- Time complexity depends on the situation. -- --- * @O(1)@ if data exists in cache and expect matches. +-- * @O(1)@ data exists in cache, expect matches. -- --- * @O(1)@ if data exists in cache and expect value is 'Nothing'. +-- * @O(1)@ data exists in cache, expect value is 'Nothing'. -- --- * @O(2)@ +-- * @O(2)@ data exists in cache, but expect value not matches value +-- in cache. +-- +-- * In all other cases time complexity does not make sense pile :: forall ma d . (MonadIO ma, ma ~ R.Redis, Binary d, Show d) => B.ByteString