redis.api

strings

package strings

Visibility
  1. Public
  2. All

Type Members

  1. case class Append[A](key: String, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable

  2. case class Bitcount(key: String) extends RedisCommandIntegerLong with Product with Serializable

  3. case class BitcountRange(key: String, start: Long, end: Long) extends RedisCommandIntegerLong with Product with Serializable

  4. case class Bitop(operation: BitOperator, destkey: String, keys: Seq[String]) extends RedisCommandIntegerLong with Product with Serializable

  5. case class Decr(key: String) extends RedisCommandIntegerLong with Product with Serializable

  6. case class Decrby(key: String, decrement: Long) extends RedisCommandIntegerLong with Product with Serializable

  7. case class Get(key: String) extends RedisCommandBulkOptionByteString with Product with Serializable

  8. case class Getbit(key: String, offset: Long) extends RedisCommandIntegerBoolean with Product with Serializable

  9. case class Getrange(key: String, start: Long, end: Long) extends RedisCommandBulkOptionByteString with Product with Serializable

  10. case class Getset[A](key: String, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandBulkOptionByteString with Product with Serializable

  11. case class Incr(key: String) extends RedisCommandIntegerLong with Product with Serializable

  12. case class Incrby(key: String, increment: Long) extends RedisCommandIntegerLong with Product with Serializable

  13. case class Incrbyfloat(key: String, increment: Double) extends RedisCommandBulkOptionDouble with Product with Serializable

  14. case class Mget(keys: Seq[String]) extends RedisCommandMultiBulk[Seq[Option[ByteString]]] with Product with Serializable

  15. case class Mset[A](keysValues: Map[String, A])(implicit convert: RedisValueConverter[A]) extends RedisCommandStatusBoolean with Product with Serializable

  16. case class Msetnx[A](keysValues: Map[String, A])(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerBoolean with Product with Serializable

  17. case class Psetex[A](key: String, milliseconds: Long, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandStatusBoolean with Product with Serializable

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

  19. case class Setbit(key: String, offset: Long, value: Boolean) extends RedisCommandIntegerBoolean with Product with Serializable

  20. case class Setex[A](key: String, seconds: Long, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandStatusBoolean with Product with Serializable

  21. case class Setnx[A](key: String, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerBoolean with Product with Serializable

  22. case class Setrange[A](key: String, offset: Long, value: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandIntegerLong with Product with Serializable

  23. case class Strlen(key: String) extends RedisCommandIntegerLong with Product with Serializable

Ungrouped