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

Database.Redis.General

Synopsis

Documentation

keyExistsSource

Arguments

:: Handle 
-> String

key

-> IO (Maybe RedisReply) 

Calls EXISTS with a String argument

keyExistsBSource

Arguments

:: Handle 
-> ByteString

key

-> IO (Maybe RedisReply) 

Calls EXISTS with a ByteString argument

keyDeleteSource

Arguments

:: Handle 
-> String

key to delete

-> IO (Maybe RedisReply) 

Calls DEL with a single String argument. This function does not yet accept multiple keys.

keyType :: Handle -> String -> IO (Maybe RedisReply)Source

Calls TYPE with a String argument

keys :: Handle -> String -> IO (Maybe RedisReply)Source

Calls KEYS with a String argument

keysB :: Handle -> ByteString -> IO (Maybe RedisReply)Source

Calls KEYS with a String argument