Keys

redis.commands.Keys
trait Keys extends Request

Attributes

Source:
Keys.scala
Graph
Supertypes
trait Request
class Object
trait Matchable
class Any
Known subtypes

Members list

Concise view

Value members

Concrete methods

Attributes

Source:
Keys.scala
def del(keys: String*): Future[Long]

Attributes

Source:
Keys.scala

Attributes

Source:
Keys.scala

Attributes

Source:
Keys.scala

Attributes

Source:
Keys.scala
def expire(key: String, seconds: Long): Future[Boolean]

Attributes

Source:
Keys.scala
def expireat(key: String, seconds: Long): Future[Boolean]

Attributes

Source:
Keys.scala
def keys(pattern: String): Future[Seq[String]]

Attributes

Source:
Keys.scala
def migrate(host: String, port: Int, key: String, destinationDB: Int, timeout: FiniteDuration, copy: Boolean, replace: Boolean, password: Option[String]): Future[Boolean]

Attributes

Source:
Keys.scala
def migrateMany(host: String, port: Int, keys: Seq[String], destinationDB: Int, timeout: FiniteDuration, copy: Boolean, replace: Boolean, password: Option[String]): Future[Boolean]

Attributes

Source:
Keys.scala
def move(key: String, db: Int): Future[Boolean]

Attributes

Source:
Keys.scala

Attributes

Source:
Keys.scala

Attributes

Source:
Keys.scala

Attributes

Source:
Keys.scala

Attributes

Source:
Keys.scala
def pexpire(key: String, milliseconds: Long): Future[Boolean]

Attributes

Source:
Keys.scala
def pexpireat(key: String, millisecondsTimestamp: Long): Future[Boolean]

Attributes

Source:
Keys.scala
def pttl(key: String): Future[Long]

Attributes

Source:
Keys.scala

Attributes

Source:
Keys.scala
def rename(key: String, newkey: String): Future[Boolean]

Attributes

Source:
Keys.scala
def renamenx(key: String, newkey: String): Future[Boolean]

Attributes

Source:
Keys.scala
def restore[V : ByteStringSerializer](key: String, ttl: Long, serializedValue: V): Future[Boolean]

Attributes

Source:
Keys.scala
def scan(cursor: Int, count: Option[Int], matchGlob: Option[String]): Future[Cursor[Seq[String]]]

Attributes

Source:
Keys.scala
def sort[R : ByteStringDeserializer](key: String, byPattern: Option[String], limit: Option[LimitOffsetCount], getPatterns: Seq[String], order: Option[Order], alpha: Boolean): Future[Seq[R]]

Attributes

Source:
Keys.scala
def sortStore(key: String, byPattern: Option[String], limit: Option[LimitOffsetCount], getPatterns: Seq[String], order: Option[Order], alpha: Boolean, store: String): Future[Long]

Attributes

Source:
Keys.scala
def ttl(key: String): Future[Long]

Attributes

Source:
Keys.scala

Inherited methods

def send[T](redisCommand: RedisCommand[_ <: RedisReply, T]): Future[T]

Attributes

Inherited from:
Request
Source:
Request.scala

Implicits

Inherited implicits

Attributes

Inherited from:
Request
Source:
Request.scala