Trait

com.avsystem.commons.redis.commands

HashesApi

Related Doc: package commands

Permalink

trait HashesApi extends ApiSubset

Linear Supertypes
ApiSubset, AnyRef, Any
Known Subclasses
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

    Permalink
    Definition Classes
    ApiSubset
  2. type Key = RedisSerialization.Key

    Permalink
    Definition Classes
    ApiSubset
  3. type Record = RedisSerialization.Record

    Permalink
    Definition Classes
    ApiSubset
  4. abstract type Result[A]

    Permalink

    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

    Permalink
    Definition Classes
    ApiSubset

Abstract Value Members

  1. abstract def execute[A](command: RedisCommand[A]): Result[A]

    Permalink
    Definition Classes
    ApiSubset
  2. abstract val serialization: RedisSerialization

    Permalink
    Definition Classes
    ApiSubset

Concrete 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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  8. implicit final def fieldCodec: RedisDataCodec[Field]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  9. def finalize(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hdel(key: Key, fields: Iterable[Field]): Result[Int]

    Permalink

    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]

    Permalink

    Executes HDEL

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

    Permalink

    Executes HDEL

  15. implicit def headOps[T](head: T): HeadOps[T]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  16. def hexists(key: Key, field: Field): Result[Boolean]

    Permalink

    Executes HEXISTS

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

    Permalink

    Executes HGET

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

    Permalink

    Executes HGETALL

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

    Permalink

    Executes HGETALL

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

    Permalink

    Executes HINCRBY

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

    Permalink

    Executes HINCRBYFLOAT

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

    Permalink

    Executes HKEYS

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

    Permalink

    Executes HLEN

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

    Permalink

    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]]]

    Permalink

    Executes HMGET

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

    Permalink

    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]

    Permalink

    Executes HMSET

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

    Permalink

    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)])]

    Permalink

    Executes HSCAN

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

    Permalink

    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]

    Permalink

    Executes HSET

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

    Permalink

    Executes HSET

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

    Permalink

    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]

    Permalink

    Executes HSETNX

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

    Permalink

    Executes HSTRLEN

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

    Permalink

    Executes HVALS

  37. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  38. implicit def iterableTailOps[T](tail: Iterable[T]): IterableTailOps[T]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  39. implicit def iteratorTailOps[T](tail: Iterator[T]): IteratorTailOps[T]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  40. implicit final def keyCodec: RedisDataCodec[Key]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  41. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  44. implicit final def recordCodec: RedisRecordCodec[Record]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  45. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  47. implicit final def valueCodec: RedisDataCodec[Value]

    Permalink
    Attributes
    protected
    Definition Classes
    ApiSubset
  48. final def wait(): Unit

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

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

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

Inherited from ApiSubset

Inherited from AnyRef

Inherited from Any

Ungrouped