redis.api.keys
package redis.api.keys
Type members
Classlikes
case class Del[K](keys: Seq[K])(implicit redisKey: ByteStringSerializer[K]) extends MultiClusterKey[K] with RedisCommandIntegerLong
- Source:
- Keys.scala
case class Dump[K, R](key: K)(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends SimpleClusterKey[K] with RedisCommandBulkOptionByteString[R]
- Source:
- Keys.scala
case class Exists[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerBoolean
- Source:
- Keys.scala
case class ExistsMany[K](keys: Seq[K])(implicit redisKey: ByteStringSerializer[K]) extends MultiClusterKey[K] with RedisCommandIntegerLong
- Source:
- Keys.scala
case class Expire[K](key: K, seconds: Long)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerBoolean
- Source:
- Keys.scala
case class Expireat[K](key: K, seconds: Long)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerBoolean
- Source:
- Keys.scala
case class Migrate[K](host: String, port: Int, keys: Seq[K], destinationDB: Int, timeout: FiniteDuration, copy: Boolean, replace: Boolean, password: Option[String])(implicit redisKey: ByteStringSerializer[K]) extends RedisCommandStatusBoolean
- Source:
- Keys.scala
case class Move[K](key: K, db: Int)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerBoolean
- Source:
- Keys.scala
case class ObjectEncoding[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandBulk[Option[String]]
- Source:
- Keys.scala
case class ObjectIdletime[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandRedisReplyOptionLong
- Source:
- Keys.scala
case class ObjectRefcount[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandRedisReplyOptionLong
- Source:
- Keys.scala
case class Persist[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerBoolean
- Source:
- Keys.scala
case class Pexpire[K](key: K, milliseconds: Long)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerBoolean
- Source:
- Keys.scala
case class Pexpireat[K](key: K, millisecondsTimestamp: Long)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerBoolean
- Source:
- Keys.scala
case class Pttl[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
- Source:
- Keys.scala
case class Randomkey[R]()(implicit deserializerR: ByteStringDeserializer[R]) extends RedisCommandBulkOptionByteString[R]
- Source:
- Keys.scala
case class Rename[K, NK](key: K, newkey: NK)(implicit redisKey: ByteStringSerializer[K], newKeySer: ByteStringSerializer[NK]) extends SimpleClusterKey[K] with RedisCommandStatusBoolean
- Source:
- Keys.scala
case class Renamex[K, NK](key: K, newkey: NK)(implicit redisKey: ByteStringSerializer[K], newKeySer: ByteStringSerializer[NK]) extends SimpleClusterKey[K] with RedisCommandIntegerBoolean
- Source:
- Keys.scala
case class Restore[K, V](key: K, ttl: Long, serializedValue: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K] with RedisCommandStatusBoolean
- Source:
- Keys.scala
case class Scan[C](cursor: C, count: Option[Int], matchGlob: Option[String])(implicit redisCursor: ByteStringSerializer[C], deserializer: ByteStringDeserializer[String]) extends RedisCommandMultiBulkCursor[Seq[String]]
- Source:
- Keys.scala
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]
- Source:
- Keys.scala
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
- Source:
- Keys.scala
case class Ttl[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
- Source:
- Keys.scala
case class Type[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandStatusString
- Source:
- Keys.scala
case class Unlink[K](keys: Seq[K])(implicit redisKey: ByteStringSerializer[K]) extends MultiClusterKey[K] with RedisCommandIntegerLong
- Source:
- Keys.scala