redis.commands

Strings

trait Strings extends Request

Source
Strings.scala
Linear Supertypes
Request, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Strings
  2. Request
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. implicit abstract val executionContext: ExecutionContext

    Definition Classes
    Request
  2. abstract def redisConnection: ActorRef

    Definition Classes
    Request

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def append[A](key: String, value: A)(implicit convert: RedisValueConverter[A]): Future[Long]

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def bitcount(key: String, start: Long, end: Long): Future[Long]

  9. def bitcount(key: String): Future[Long]

  10. def bitop(operation: BitOperator, destkey: String, keys: String*): Future[Long]

  11. def bitopAND(destkey: String, keys: String*): Future[Long]

  12. def bitopNOT(destkey: String, key: String): Future[Long]

  13. def bitopOR(destkey: String, keys: String*): Future[Long]

  14. def bitopXOR(destkey: String, keys: String*): Future[Long]

  15. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. def decr(key: String): Future[Long]

  17. def decrby(key: String, decrement: Long): Future[Long]

  18. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  20. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def get(key: String): Future[Option[ByteString]]

  22. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  23. def getbit(key: String, offset: Long): Future[Boolean]

  24. def getrange(key: String, start: Long, end: Long): Future[Option[ByteString]]

  25. def getset[A](key: String, value: A)(implicit convert: RedisValueConverter[A]): Future[Option[ByteString]]

  26. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  27. def incr(key: String): Future[Long]

  28. def incrby(key: String, increment: Long): Future[Long]

  29. def incrbyfloat(key: String, increment: Double): Future[Option[Double]]

  30. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  31. def mget(keys: String*): Future[Seq[Option[ByteString]]]

  32. def mset[A](keysValues: Map[String, A])(implicit convert: RedisValueConverter[A]): Future[Boolean]

  33. def msetnx[A](keysValues: Map[String, A])(implicit convert: RedisValueConverter[A]): Future[Boolean]

  34. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  35. final def notify(): Unit

    Definition Classes
    AnyRef
  36. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  37. def psetex[A](key: String, milliseconds: Long, value: A)(implicit convert: RedisValueConverter[A]): Future[Boolean]

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

    Definition Classes
    Request
  39. def set[A](key: String, value: A, exSeconds: Option[Long] = None, pxMilliseconds: Option[Long] = None, NX: Boolean = false, XX: Boolean = false)(implicit convert: RedisValueConverter[A]): Future[Boolean]

  40. def setbit(key: String, offset: Long, value: Boolean): Future[Boolean]

  41. def setex[A](key: String, seconds: Long, value: A)(implicit convert: RedisValueConverter[A]): Future[Boolean]

  42. def setnx[A](key: String, value: A)(implicit convert: RedisValueConverter[A]): Future[Boolean]

  43. def setrange[A](key: String, offset: Long, value: A)(implicit convert: RedisValueConverter[A]): Future[Long]

  44. def strlen(key: String): Future[Long]

  45. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  46. def toString(): String

    Definition Classes
    AnyRef → Any
  47. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Request

Inherited from AnyRef

Inherited from Any

Ungrouped