Keys

trait Keys extends Request
Source:
Keys.scala
trait Request
class Object
trait Matchable
class Any

Value members

Concrete methods

def del(keys: String*): Future[Long]
Source:
Keys.scala
Source:
Keys.scala
def expire(key: String, seconds: Long): Future[Boolean]
Source:
Keys.scala
def expireat(key: String, seconds: Long): Future[Boolean]
Source:
Keys.scala
def keys(pattern: String): Future[Seq[String]]
Source:
Keys.scala
def migrate(host: String, port: Int, key: String, destinationDB: Int, timeout: FiniteDuration, copy: Boolean, replace: Boolean, password: Option[String]): Future[Boolean]
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]
Source:
Keys.scala
def move(key: String, db: Int): Future[Boolean]
Source:
Keys.scala
def pexpire(key: String, milliseconds: Long): Future[Boolean]
Source:
Keys.scala
def pexpireat(key: String, millisecondsTimestamp: Long): Future[Boolean]
Source:
Keys.scala
def pttl(key: String): Future[Long]
Source:
Keys.scala
def rename(key: String, newkey: String): Future[Boolean]
Source:
Keys.scala
def renamenx(key: String, newkey: String): Future[Boolean]
Source:
Keys.scala
def restore[V : ByteStringSerializer](key: String, ttl: Long, serializedValue: V): Future[Boolean]
Source:
Keys.scala
def scan(cursor: Int, count: Option[Int], matchGlob: Option[String]): Future[Cursor[Seq[String]]]
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]]
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]
Source:
Keys.scala
def ttl(key: String): Future[Long]
Source:
Keys.scala

Inherited methods

def send[T](redisCommand: RedisCommand[_ <: RedisReply, T]): Future[T]
Inherited from:
Request
Source:
Request.scala

Implicits

Inherited implicits

Inherited from:
Request
Source:
Request.scala