Hoogle Search

Within Stackage Nightly 2026-06-30 (ghc-9.12.4)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. setbit :: RedisCtx m f => ByteString -> Integer -> ByteString -> m (f Integer)

    hedis Database.Redis.Commands

    Sets or clears the bit at offset in the string value stored at key (http://redis.io/commands/setbit). Since Redis 2.2.0

  2. setex :: RedisCtx m f => ByteString -> Integer -> ByteString -> m (f Status)

    hedis Database.Redis.Commands

    Set the value and expiration of a key (http://redis.io/commands/setex). Regarded as deprected since 2.6 as it can be replaced by SET with the EX argument when migrating or writing new code. Since Redis 2.0.0

  3. setnx :: RedisCtx m f => ByteString -> ByteString -> m (f Bool)

    hedis Database.Redis.Commands

    O(1) Sets the value of a key, only if the key does not exist (http://redis.io/commands/setnx). Returns a result if a value was set. Since Redis 1.0.0

  4. setrange :: RedisCtx m f => ByteString -> Integer -> ByteString -> m (f Integer)

    hedis Database.Redis.Commands

    Overwrite part of a string at key starting at the specified offset (http://redis.io/commands/setrange). Returns the lenght of the string after it was modified. Since Redis 2.2.0

  5. setCondition :: SetOpts -> Maybe Condition

    hedis Database.Redis.ManualCommands

    Set the key on condition

  6. setGet :: RedisCtx m f => ByteString -> ByteString -> m (f ByteString)

    hedis Database.Redis.ManualCommands

    No documentation available.

  7. setGetOpts :: RedisCtx m f => ByteString -> ByteString -> SetOpts -> m (f ByteString)

    hedis Database.Redis.ManualCommands

    No documentation available.

  8. setKeepTTL :: SetOpts -> Bool

    hedis Database.Redis.ManualCommands

    Retain the time to live associated with the key. Since Redis 6.0

  9. setMilliseconds :: SetOpts -> Maybe Integer

    hedis Database.Redis.ManualCommands

    Set the specified expire time, in milliseconds.

  10. setOpts :: RedisCtx m f => ByteString -> ByteString -> SetOpts -> m (f Status)

    hedis Database.Redis.ManualCommands

    No documentation available.

Page 58 of many | Previous | Next