redis-hs-0.0.13: A simple Redis library for Haskell

Database.Redis.String

Synopsis

Documentation

itemSetSource

Arguments

:: Handle 
-> String

key to set

-> String

value to set

-> IO (Maybe RedisReply) 

SET

itemSetBSource

Arguments

:: Handle 
-> ByteString

key to set

-> ByteString

value to set

-> IO (Maybe RedisReply) 

SET for ByteString input

itemGetSource

Arguments

:: Handle 
-> String

key of the value to return

-> IO (Maybe RedisReply) 

GET

itemGetBSource

Arguments

:: Handle 
-> ByteString

key of the value to return

-> IO (Maybe RedisReply) 

GET for ByteString input