trait HashesApi extends ApiSubset
- Alphabetic
- By Inheritance
- HashesApi
- ApiSubset
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
type
Field = RedisSerialization.Field
- Definition Classes
- ApiSubset
-
type
Key = RedisSerialization.Key
- Definition Classes
- ApiSubset
-
type
Record = RedisSerialization.Record
- Definition Classes
- ApiSubset
-
abstract
type
Result[A]
The type constructor into which a result of each command is wrapped.
-
type
Value = RedisSerialization.Value
- Definition Classes
- ApiSubset
Abstract Value Members
-
abstract
def
execute[A](command: RedisCommand[A]): Result[A]
- Definition Classes
- ApiSubset
-
abstract
val
serialization: RedisSerialization
- Definition Classes
- ApiSubset
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
implicit final
def
fieldCodec: RedisDataCodec[Field]
- Attributes
- protected
- Definition Classes
- ApiSubset
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
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 -
def
hdel(key: Key, field: Field, fields: Field*): Result[Int]
Executes HDEL
-
def
hdel(key: Key, field: Field): Result[Boolean]
Executes HDEL
-
implicit
def
headOps[T](head: T): HeadOps[T]
- Attributes
- protected
- Definition Classes
- ApiSubset
-
def
hexists(key: Key, field: Field): Result[Boolean]
Executes HEXISTS
-
def
hget(key: Key, field: Field): Result[commons.Opt[Value]]
Executes HGET
-
def
hgetall(key: Key): Result[commons.BMap[Field, Value]]
Executes HGETALL
-
def
hgetallRecord(key: Key): Result[commons.Opt[Record]]
Executes HGETALL
-
def
hincrby(key: Key, field: Field, increment: Long): Result[Long]
Executes HINCRBY
-
def
hincrbyfloat(key: Key, field: Field, increment: Double): Result[Double]
Executes HINCRBYFLOAT
-
def
hkeys(key: Key): Result[commons.BSet[Field]]
Executes HKEYS
-
def
hlen(key: Key): Result[Long]
Executes HLEN
-
def
hmget(key: Key, fields: Iterable[Field]): Result[Seq[commons.Opt[Value]]]
Executes HMGET or simply returns empty
Seq
whenfields
is empty, without sending the command to Redis -
def
hmget(key: Key, field: Field, fields: Field*): Result[Seq[commons.Opt[Value]]]
Executes HMGET
-
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 -
def
hmset(key: Key, fieldValue: (Field, Value), fieldValues: (Field, Value)*): Result[Unit]
Executes HMSET
-
def
hmsetRecord(key: Key, data: Record): Result[Unit]
Executes HMSET or does nothing when
data
is empty, without sending the command to Redis -
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
-
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 -
def
hset(key: Key, fieldValue: (Field, Value), fieldValues: (Field, Value)*): Result[Int]
Executes HSET
-
def
hset(key: Key, field: Field, value: Value): Result[Boolean]
Executes HSET
-
def
hsetRecord(key: Key, data: Record): Result[Int]
Executes HSET or does nothing when
data
is empty, without sending the command to Redis -
def
hsetnx(key: Key, field: Field, value: Value): Result[Boolean]
Executes HSETNX
-
def
hstrlen(key: Key, field: Field): Result[Int]
Executes HSTRLEN
-
def
hvals(key: Key): Result[Iterable[Value]]
Executes HVALS
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
implicit
def
iterableTailOps[T](tail: Iterable[T]): IterableTailOps[T]
- Attributes
- protected
- Definition Classes
- ApiSubset
-
implicit
def
iteratorTailOps[T](tail: Iterator[T]): IteratorTailOps[T]
- Attributes
- protected
- Definition Classes
- ApiSubset
-
implicit final
def
keyCodec: RedisDataCodec[Key]
- Attributes
- protected
- Definition Classes
- ApiSubset
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
implicit final
def
recordCodec: RedisRecordCodec[Record]
- Attributes
- protected
- Definition Classes
- ApiSubset
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
implicit final
def
valueCodec: RedisDataCodec[Value]
- Attributes
- protected
- Definition Classes
- ApiSubset
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )