trait Keys extends Request

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Keys
  2. Request
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. implicit abstract val executionContext: ExecutionContext
    Definition Classes
    Request
  2. abstract def send[T](redisCommand: RedisCommand[_ <: RedisReply, T]): Future[T]
    Definition Classes
    Request

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. def del(keys: String*): Future[Long]
  7. def dump[R](key: String)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def exists(key: String): Future[Boolean]
  11. def existsMany(keys: String*): Future[Long]
  12. def expire(key: String, seconds: Long): Future[Boolean]
  13. def expireat(key: String, seconds: Long): Future[Boolean]
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def keys(pattern: String): Future[Seq[String]]
  18. def migrate(host: String, port: Int, key: String, destinationDB: Int, timeout: FiniteDuration): Future[Boolean]
  19. def move(key: String, db: Int): Future[Boolean]
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. def objectEncoding(key: String): Future[Option[String]]
  24. def objectIdletime(key: String): Future[Option[Long]]
  25. def objectRefcount(key: String): Future[Option[Long]]
  26. def persist(key: String): Future[Boolean]
  27. def pexpire(key: String, milliseconds: Long): Future[Boolean]
  28. def pexpireat(key: String, millisecondsTimestamp: Long): Future[Boolean]
  29. def pttl(key: String): Future[Long]
  30. def randomkey[R]()(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
  31. def rename(key: String, newkey: String): Future[Boolean]
  32. def renamenx(key: String, newkey: String): Future[Boolean]
  33. def restore[V](key: String, ttl: Long = 0, serializedValue: V)(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
  34. def scan(cursor: Int = 0, count: Option[Int] = None, matchGlob: Option[String] = None): Future[Cursor[Seq[String]]]
  35. def sort[R](key: String, byPattern: Option[String] = None, limit: Option[LimitOffsetCount] = None, getPatterns: Seq[String] = Seq(), order: Option[Order] = None, alpha: Boolean = false)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
  36. def sortStore(key: String, byPattern: Option[String] = None, limit: Option[LimitOffsetCount] = None, getPatterns: Seq[String] = Seq(), order: Option[Order] = None, alpha: Boolean = false, store: String): Future[Long]
  37. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  38. def toString(): String
    Definition Classes
    AnyRef → Any
  39. def ttl(key: String): Future[Long]
  40. def type(key: String): Future[String]
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  43. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Request

Inherited from AnyRef

Inherited from Any

Ungrouped