com.top10.redis

PipelineWrap

class PipelineWrap extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. PipelineWrap
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PipelineWrap(pipe: Pipeline)

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. def del(key: String): ScalaResponse[Long]

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

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

    Definition Classes
    AnyRef → Any
  11. def exists(key: String): ScalaResponse[Boolean]

  12. def expire(key: String, ttl: Int): ScalaResponse[Long]

  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  14. def get(key: String): ScalaResponse[Option[String]]

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

    Definition Classes
    AnyRef → Any
  16. def getset(key: String, field: String): ScalaResponse[String]

  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. def hdel(key: String, field: String): ScalaResponse[Long]

  19. def hexists(key: String, field: String): ScalaResponse[Boolean]

  20. def hget(key: String, field: String): ScalaResponse[Option[String]]

  21. def hgetAll(key: String): ScalaResponse[Map[String, String]]

  22. def hincrBy(key: String, field: String, increment: Long): ScalaResponse[Long]

  23. def hmget(key: String, fields: List[String]): ScalaResponse[Seq[Option[String]]]

  24. def hmset(key: String, details: Map[String, String]): ScalaResponse[String]

  25. def hset(key: String, field: String, value: String): ScalaResponse[Long]

  26. def incr(key: String): ScalaResponse[Long]

  27. def incrby(key: String, increment: Int): ScalaResponse[Long]

  28. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  29. def llength(key: String): ScalaResponse[Long]

  30. def lpop(key: String): ScalaResponse[Option[String]]

  31. def lpush(key: String, value: String): ScalaResponse[Long]

  32. def lrange(key: String, start: Long, end: Long): ScalaResponse[Seq[String]]

  33. def lrem(key: String, value: String, num: Long): ScalaResponse[Long]

  34. def ltrim(key: String, start: Long, end: Long): ScalaResponse[String]

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

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

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

    Definition Classes
    AnyRef
  38. def put(key: String, values: Map[String, String]): ScalaResponse[String]

  39. def rpush(key: String, value: String): ScalaResponse[Long]

  40. def sadd(key: String, value: String): ScalaResponse[Long]

  41. def scard(key: String): ScalaResponse[Long]

  42. def set(key: String, value: String): ScalaResponse[String]

  43. def setnx(key: String, value: String): ScalaResponse[Long]

  44. def sismember(key: String, value: String): ScalaResponse[Boolean]

  45. def smembers(key: String): ScalaResponse[Set[String]]

  46. def sort(key: String, sp: SortingParams): ScalaResponse[Seq[String]]

  47. def srem(key: String, value: String): ScalaResponse[Long]

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

    Definition Classes
    AnyRef
  49. def toString(): String

    Definition Classes
    AnyRef → Any
  50. def ttl(key: String): ScalaResponse[Long]

  51. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  54. def zadd(key: String, score: Double, value: String): ScalaResponse[Long]

  55. def zcard(key: String): ScalaResponse[Long]

  56. def zincrBy(key: String, increment: Double, member: String): ScalaResponse[Double]

  57. def zrange(key: String, start: Int, end: Int): ScalaResponse[Seq[String]]

  58. def zrangeWithScores(key: String, start: Int, end: Int): ScalaResponse[Seq[(String, Double)]]

  59. def zrank(key: String, member: String): ScalaResponse[Option[Long]]

  60. def zrem(key: String, member: String): ScalaResponse[Long]

  61. def zremrangeByRank(key: String, start: Int, end: Int): ScalaResponse[Long]

  62. def zremrangeByScore(key: String, start: Double, end: Double): ScalaResponse[Long]

  63. def zrevrange(key: String, start: Int, end: Int): ScalaResponse[Seq[String]]

  64. def zrevrangeWithScores(key: String, start: Int, end: Int): ScalaResponse[Seq[(String, Double)]]

  65. def zrevrank(key: String, member: String): ScalaResponse[Option[Long]]

  66. def zscore(key: String, member: String): ScalaResponse[Option[Double]]

Inherited from AnyRef

Inherited from Any

Ungrouped