redis.api

strings

package strings

Visibility
  1. Public
  2. All

Type Members

  1. case class Append[K, V](key: K, value: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandIntegerLong with Product with Serializable

  2. case class Bitcount[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

  3. case class BitcountRange[K](key: K, start: Long, end: Long)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

  4. case class Bitop[K, KK](operation: BitOperator, destkey: K, keys: Seq[KK])(implicit redisKey: ByteStringSerializer[K], redisKeys: ByteStringSerializer[KK]) extends RedisCommandIntegerLong with Product with Serializable

  5. case class Decr[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

  6. case class Decrby[K](key: K, decrement: Long)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

  7. case class Get[K, R](key: K)(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandBulkOptionByteString[R] with Product with Serializable

  8. case class Getbit[K](key: K, offset: Long)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerBoolean with Product with Serializable

  9. case class Getrange[K, R](key: K, start: Long, end: Long)(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandBulkOptionByteString[R] with Product with Serializable

  10. case class Getset[K, V, R](key: K, value: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V], deserializerR: ByteStringDeserializer[R]) extends RedisCommandBulkOptionByteString[R] with Product with Serializable

  11. case class Incr[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

  12. case class Incrby[K](key: K, increment: Long)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

  13. case class Incrbyfloat[K](key: K, increment: Double)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandBulkOptionDouble with Product with Serializable

  14. case class Mget[K, R](keys: Seq[K])(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulk[Seq[Option[R]]] with Product with Serializable

  15. case class Mset[K, V](keysValues: Map[K, V])(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandStatusBoolean with Product with Serializable

  16. case class Msetnx[K, V](keysValues: Map[K, V])(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandIntegerBoolean with Product with Serializable

  17. case class Psetex[K, V](key: K, milliseconds: Long, value: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandStatusBoolean with Product with Serializable

  18. case class Set[K, V](key: K, value: V, exSeconds: Option[Long] = scala.None, pxMilliseconds: Option[Long] = scala.None, NX: Boolean = false, XX: Boolean = false)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandRedisReply[Boolean] with Product with Serializable

  19. case class Setbit[K](key: K, offset: Long, value: Boolean)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerBoolean with Product with Serializable

  20. case class Setex[K, V](key: K, seconds: Long, value: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandStatusBoolean with Product with Serializable

  21. case class Setnx[K, V](key: K, value: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandIntegerBoolean with Product with Serializable

  22. case class Setrange[K, V](key: K, offset: Long, value: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandIntegerLong with Product with Serializable

  23. case class Strlen[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

Ungrouped