Packages

trait HashesApi extends ApiSubset

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

Type Members

  1. type Field = RedisSerialization.Field
    Definition Classes
    ApiSubset
  2. type Key = RedisSerialization.Key
    Definition Classes
    ApiSubset
  3. type Record = RedisSerialization.Record
    Definition Classes
    ApiSubset
  4. abstract type Result[A]

    The type constructor into which a result of each command is wrapped.

    The type constructor into which a result of each command is wrapped. For example if Result is Future, then incr returns Future[Long].

    Definition Classes
    ApiSubset
  5. type Value = RedisSerialization.Value
    Definition Classes
    ApiSubset

Abstract Value Members

  1. abstract def execute[A](command: RedisCommand[A]): Result[A]
    Definition Classes
    ApiSubset
  2. abstract val serialization: RedisSerialization
    Definition Classes
    ApiSubset

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
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. implicit final def fieldCodec: RedisDataCodec[Field]
    Attributes
    protected
    Definition Classes
    ApiSubset
  9. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hdel(key: Key, fields: Iterable[Field]): Result[Int]

    Executes HDEL or simply returns 0 when fields is empty, without sending the command to Redis

  13. def hdel(key: Key, field: Field, fields: Field*): Result[Int]

    Executes HDEL

  14. def hdel(key: Key, field: Field): Result[Boolean]

    Executes HDEL

  15. implicit def headOps[T](head: T): HeadOps[T]
    Attributes
    protected
    Definition Classes
    ApiSubset
  16. def hexists(key: Key, field: Field): Result[Boolean]

    Executes HEXISTS

  17. def hget(key: Key, field: Field): Result[commons.Opt[Value]]

    Executes HGET

  18. def hgetall(key: Key): Result[commons.BMap[Field, Value]]

    Executes HGETALL

  19. def hgetallRecord(key: Key): Result[commons.Opt[Record]]

    Executes HGETALL

  20. def hincrby(key: Key, field: Field, increment: Long): Result[Long]

    Executes HINCRBY

  21. def hincrbyfloat(key: Key, field: Field, increment: Double): Result[Double]

    Executes HINCRBYFLOAT

  22. def hkeys(key: Key): Result[commons.BSet[Field]]

    Executes HKEYS

  23. def hlen(key: Key): Result[Long]

    Executes HLEN

  24. def hmget(key: Key, fields: Iterable[Field]): Result[Seq[commons.Opt[Value]]]

    Executes HMGET or simply returns empty Seq when fields is empty, without sending the command to Redis

  25. def hmget(key: Key, field: Field, fields: Field*): Result[Seq[commons.Opt[Value]]]

    Executes HMGET

  26. def hmset(key: Key, fieldValues: Iterable[(Field, Value)]): Result[Unit]

    Executes HMSET or does nothing when fieldValues is empty, without sending the command to Redis

  27. def hmset(key: Key, fieldValue: (Field, Value), fieldValues: (Field, Value)*): Result[Unit]

    Executes HMSET

  28. def hmsetRecord(key: Key, data: Record): Result[Unit]

    Executes HMSET or does nothing when data is empty, without sending the command to Redis

  29. def hscan(key: Key, cursor: Cursor, matchPattern: commons.OptArg[Field] = OptArg.Empty, count: commons.OptArg[Int] = OptArg.Empty): Result[(Cursor, Seq[(Field, Value)])]

    Executes HSCAN

  30. def hset(key: Key, fieldValues: Iterable[(Field, Value)]): Result[Int]

    Executes HSET or does nothing when fieldValues is empty, without sending the command to Redis

  31. def hset(key: Key, fieldValue: (Field, Value), fieldValues: (Field, Value)*): Result[Int]

    Executes HSET

  32. def hset(key: Key, field: Field, value: Value): Result[Boolean]

    Executes HSET

  33. def hsetRecord(key: Key, data: Record): Result[Int]

    Executes HSET or does nothing when data is empty, without sending the command to Redis

  34. def hsetnx(key: Key, field: Field, value: Value): Result[Boolean]

    Executes HSETNX

  35. def hstrlen(key: Key, field: Field): Result[Int]

    Executes HSTRLEN

  36. def hvals(key: Key): Result[Iterable[Value]]

    Executes HVALS

  37. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  38. implicit def iterableTailOps[T](tail: Iterable[T]): IterableTailOps[T]
    Attributes
    protected
    Definition Classes
    ApiSubset
  39. implicit def iteratorTailOps[T](tail: Iterator[T]): IteratorTailOps[T]
    Attributes
    protected
    Definition Classes
    ApiSubset
  40. implicit final def keyCodec: RedisDataCodec[Key]
    Attributes
    protected
    Definition Classes
    ApiSubset
  41. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  42. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  43. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  44. implicit final def recordCodec: RedisRecordCodec[Record]
    Attributes
    protected
    Definition Classes
    ApiSubset
  45. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  46. def toString(): String
    Definition Classes
    AnyRef → Any
  47. implicit final def valueCodec: RedisDataCodec[Value]
    Attributes
    protected
    Definition Classes
    ApiSubset
  48. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from ApiSubset

Inherited from AnyRef

Inherited from Any

Ungrouped