Trait

com.redis.api

StringOperations

Related Doc: package api

Permalink

trait StringOperations extends AnyRef

Self Type
RedisOps
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. StringOperations
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def append(key: String, value: Stringified)(implicit timeout: Timeout): Future[Long]

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def bitcount(key: String, range: Option[(Int, Int)] = None)(implicit timeout: Timeout): Future[Long]

    Permalink
  7. def bitop(op: String, destKey: String, srcKey: String, srcKeys: String*)(implicit timeout: Timeout): Future[Long]

    Permalink
  8. def bitop(op: String, destKey: String, srcKeys: Seq[String])(implicit timeout: Timeout): Future[Long]

    Permalink
  9. def bitpos(key: String, bit: Boolean, start: Int, end: Int)(implicit timeout: Timeout): Future[Long]

    Permalink
  10. def bitpos(key: String, bit: Boolean, start: Int)(implicit timeout: Timeout): Future[Long]

    Permalink
  11. def bitpos(key: String, bit: Boolean, start: Option[Int] = None, end: Option[Int] = None)(implicit timeout: Timeout): Future[Long]

    Permalink
  12. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def decr(key: String)(implicit timeout: Timeout): Future[Long]

    Permalink
  14. def decrby(key: String, amount: Int)(implicit timeout: Timeout): Future[Long]

    Permalink
  15. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def get[A](key: String)(implicit timeout: Timeout, reader: Reader[A]): Future[Option[A]]

    Permalink
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. def getbit(key: String, offset: Int)(implicit timeout: Timeout): Future[Boolean]

    Permalink
  21. def getrange[A](key: String, start: Int, end: Int)(implicit timeout: Timeout, reader: Reader[A]): Future[Option[A]]

    Permalink
  22. def getset[A](key: String, value: Stringified)(implicit timeout: Timeout, reader: Reader[A]): Future[Option[A]]

    Permalink
  23. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  24. def incr(key: String)(implicit timeout: Timeout): Future[Long]

    Permalink
  25. def incrby(key: String, amount: Int)(implicit timeout: Timeout): Future[Long]

    Permalink
  26. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  27. def mget[A](key: String, keys: String*)(implicit timeout: Timeout, reader: Reader[A]): Future[Map[String, A]]

    Permalink
  28. def mget[A](keys: Seq[String])(implicit timeout: Timeout, reader: Reader[A]): Future[Map[String, A]]

    Permalink
  29. def mset(kvs: KeyValuePair*)(implicit timeout: Timeout): Future[Boolean]

    Permalink
  30. def msetnx(kvs: KeyValuePair*)(implicit timeout: Timeout): Future[Boolean]

    Permalink
  31. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  32. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  33. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  34. def psetex(key: String, expiryInMillis: Int, value: Stringified)(implicit timeout: Timeout): Future[Boolean]

    Permalink
  35. def set(key: String, value: Stringified, exORpx: SetExpiryOption, nxORxx: SetConditionOption)(implicit timeout: Timeout): Future[Boolean]

    Permalink
  36. def set(key: String, value: Stringified, setOption: SetOption)(implicit timeout: Timeout): Future[Boolean]

    Permalink
  37. def set(key: String, value: Stringified, exORpx: Option[SetExpiryOption] = None, nxORxx: Option[SetConditionOption] = None)(implicit timeout: Timeout): Future[Boolean]

    Permalink
  38. def setbit(key: String, offset: Int, value: Boolean)(implicit timeout: Timeout): Future[Long]

    Permalink
  39. def setex(key: String, expiry: Int, value: Stringified)(implicit timeout: Timeout): Future[Boolean]

    Permalink
  40. def setnx(key: String, value: Stringified)(implicit timeout: Timeout): Future[Boolean]

    Permalink
  41. def setrange(key: String, offset: Int, value: Stringified)(implicit timeout: Timeout): Future[Long]

    Permalink
  42. def strlen(key: String)(implicit timeout: Timeout): Future[Long]

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

    Permalink
    Definition Classes
    AnyRef
  44. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped