redis.commands

Lists

trait Lists extends Request

Source
Lists.scala
Linear Supertypes
Request, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Lists
  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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. def lindex(key: String, index: Long): Future[Option[ByteString]]

  15. def linsert[A](key: String, beforeAfter: ListPivot, pivot: String, value: A)(implicit convert: RedisValueConverter[A]): Future[Long]

  16. def linsertAfter[A](key: String, pivot: String, value: A)(implicit convert: RedisValueConverter[A]): Future[Long]

  17. def linsertBefore[A](key: String, pivot: String, value: A)(implicit convert: RedisValueConverter[A]): Future[Long]

  18. def llen(key: String): Future[Long]

  19. def lpop(key: String): Future[Option[ByteString]]

  20. def lpush[A](key: String, values: A*)(implicit convert: RedisValueConverter[A]): Future[Long]

  21. def lpushx[A](key: String, value: A)(implicit convert: RedisValueConverter[A]): Future[Long]

  22. def lrange(key: String, start: Long, stop: Long): Future[Seq[ByteString]]

  23. def lrem[A](key: String, count: Long, value: A)(implicit convert: RedisValueConverter[A]): Future[Long]

  24. def lset[A](key: String, index: Long, value: A)(implicit convert: RedisValueConverter[A]): Future[Boolean]

  25. def ltrim(key: String, start: Long, stop: Long): Future[Boolean]

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

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

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

    Definition Classes
    AnyRef
  29. def rpop(key: String): Future[Option[ByteString]]

  30. def rpoplpush(source: String, destination: String): Future[Option[ByteString]]

  31. def rpush[A](key: String, values: A*)(implicit convert: RedisValueConverter[A]): Future[Long]

  32. def rpushx[A](key: String, value: A)(implicit convert: RedisValueConverter[A]): Future[Long]

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

    Definition Classes
    Request
  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  35. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Request

Inherited from AnyRef

Inherited from Any

Ungrouped