redis.api

keys

package keys

Visibility
  1. Public
  2. All

Type Members

  1. case class Del(keys: Seq[String]) extends RedisCommandIntegerLong with Product with Serializable

  2. case class Dump(key: String) extends RedisCommandBulkOptionByteString with Product with Serializable

  3. case class Exists(key: String) extends RedisCommandIntegerBoolean with Product with Serializable

  4. case class Expire(key: String, seconds: Long) extends RedisCommandIntegerBoolean with Product with Serializable

  5. case class Expireat(key: String, seconds: Long) extends RedisCommandIntegerBoolean with Product with Serializable

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

  7. case class Migrate(host: String, port: Int, key: String, destinationDB: Int, timeout: FiniteDuration) extends RedisCommandStatusBoolean with Product with Serializable

  8. case class Move(key: String, db: Int) extends RedisCommandIntegerBoolean with Product with Serializable

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

  10. case class ObjectIdletime(key: String) extends RedisCommandRedisReplyOptionLong with Product with Serializable

  11. case class ObjectRefcount(key: String) extends RedisCommandRedisReplyOptionLong with Product with Serializable

  12. case class Persist(key: String) extends RedisCommandIntegerBoolean with Product with Serializable

  13. case class Pexpire(key: String, milliseconds: Long) extends RedisCommandIntegerBoolean with Product with Serializable

  14. case class Pexpireat(key: String, millisecondsTimestamp: Long) extends RedisCommandIntegerBoolean with Product with Serializable

  15. case class Pttl(key: String) extends RedisCommandIntegerLong with Product with Serializable

  16. case class Rename(key: String, newkey: String) extends RedisCommandStatusBoolean with Product with Serializable

  17. case class Renamex(key: String, newkey: String) extends RedisCommandIntegerBoolean with Product with Serializable

  18. case class Restore[A](key: String, ttl: Long = 0, serializedValue: A)(implicit convert: RedisValueConverter[A]) extends RedisCommandStatusBoolean with Product with Serializable

  19. case class Sort(key: String, byPattern: Option[String], limit: Option[LimitOffsetCount], getPatterns: Seq[String], order: Option[Order], alpha: Boolean) extends RedisCommandMultiBulkSeqByteString with Product with Serializable

  20. case class SortStore(key: String, byPattern: Option[String], limit: Option[LimitOffsetCount], getPatterns: Seq[String], order: Option[Order], alpha: Boolean, store: String) extends RedisCommandIntegerLong with Product with Serializable

  21. case class Ttl(key: String) extends RedisCommandIntegerLong with Product with Serializable

  22. case class Type(key: String) extends RedisCommandStatus[String] with Product with Serializable

Value Members

  1. object Randomkey extends RedisCommandBulkOptionByteString with Product with Serializable

Ungrouped