redis.api

keys

package keys

Visibility
  1. Public
  2. All

Type Members

  1. case class Del[K](keys: Seq[K])(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerLong with Product with Serializable

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

  3. case class Exists[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerBoolean with Product with Serializable

  4. case class Expire[K](key: K, seconds: Long)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerBoolean with Product with Serializable

  5. case class Expireat[K](key: K, seconds: Long)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerBoolean with Product with Serializable

  6. case class Keys(pattern: String) extends RedisCommandMultiBulk[Seq[String]] with Product with Serializable

  7. case class Migrate[K](host: String, port: Int, key: K, destinationDB: Int, timeout: FiniteDuration)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandStatusBoolean with Product with Serializable

  8. case class Move[K](key: K, db: Int)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerBoolean with Product with Serializable

  9. case class ObjectEncoding[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandBulk[Option[String]] with Product with Serializable

  10. case class ObjectIdletime[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandRedisReplyOptionLong with Product with Serializable

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

  12. case class Persist[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerBoolean with Product with Serializable

  13. case class Pexpire[K](key: K, milliseconds: Long)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerBoolean with Product with Serializable

  14. case class Pexpireat[K](key: K, millisecondsTimestamp: Long)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandIntegerBoolean with Product with Serializable

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

  16. case class Randomkey[R]()(implicit deserializerR: ByteStringDeserializer[R]) extends RedisCommandBulkOptionByteString[R] with Product with Serializable

  17. case class Rename[K, NK](key: K, newkey: NK)(implicit redisKey: ByteStringSerializer[K], newKeySer: ByteStringSerializer[NK]) extends RedisCommandStatusBoolean with Product with Serializable

  18. case class Renamex[K, NK](key: K, newkey: NK)(implicit redisKey: ByteStringSerializer[K], newKeySer: ByteStringSerializer[NK]) extends RedisCommandIntegerBoolean with Product with Serializable

  19. case class Restore[K, V](key: K, ttl: Long = 0, serializedValue: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandStatusBoolean with Product with Serializable

  20. case class Sort[K, R](key: K, byPattern: Option[String], limit: Option[LimitOffsetCount], getPatterns: Seq[String], order: Option[Order], alpha: Boolean)(implicit evidence$1: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends RedisCommandMultiBulkSeqByteString[R] with Product with Serializable

  21. case class SortStore[K, KS](key: K, byPattern: Option[String], limit: Option[LimitOffsetCount], getPatterns: Seq[String], order: Option[Order], alpha: Boolean, store: KS)(implicit evidence$2: ByteStringSerializer[K], evidence$3: ByteStringSerializer[KS]) extends RedisCommandIntegerLong with Product with Serializable

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

  23. case class Type[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandStatus[String] with Product with Serializable

Ungrouped