redis.api.strings
package redis.api.strings
Members list
Concise view
Type members
Classlikes
case class Append[K, V](key: K, value: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Bitcount[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class BitcountRange[K](key: K, start: Long, end: Long)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Bitop[K, KK](operation: BitOperator, destkey: K, keys: Seq[KK])(implicit redisKey: ByteStringSerializer[K], redisKeys: ByteStringSerializer[KK]) extends RedisCommandIntegerLong
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class Objecttrait Matchableclass Any
case class Bitpos[K](key: K, bit: Long, start: Long, end: Long)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Decr[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Decrby[K](key: K, decrement: Long)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Get[K, R](key: K)(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends SimpleClusterKey[K] with RedisCommandBulkOptionByteString[R]
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandBulkOptionByteString[R]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Getbit[K](key: K, offset: Long)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerBoolean
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandInteger[Boolean]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Getrange[K, R](key: K, start: Long, end: Long)(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends SimpleClusterKey[K] with RedisCommandBulkOptionByteString[R]
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandBulkOptionByteString[R]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Getset[K, V, R](key: K, value: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V], deserializerR: ByteStringDeserializer[R]) extends SimpleClusterKey[K] with RedisCommandBulkOptionByteString[R]
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandBulkOptionByteString[R]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Incr[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Incrby[K](key: K, increment: Long)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Incrbyfloat[K](key: K, increment: Double)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandBulkOptionDouble
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalsclass SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Mget[K, R](keys: Seq[K])(implicit redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends MultiClusterKey[K] with RedisCommandMultiBulk[Seq[Option[R]]]
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalsclass MultiClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Mset[K, V](keysValues: Map[K, V])(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends ClusterKey with RedisCommandStatusBoolean
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandStatus[Boolean]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Msetnx[K, V](keysValues: Map[K, V])(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandIntegerBoolean
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandInteger[Boolean]class Objecttrait Matchableclass Any
case class Psetex[K, V](key: K, milliseconds: Long, value: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K] with RedisCommandStatusBoolean
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandStatus[Boolean]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Set[K, V](key: K, value: V, exSeconds: Option[Long], pxMilliseconds: Option[Long], NX: Boolean, XX: Boolean)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K] with RedisCommandRedisReply[Boolean]
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandRedisReply[Boolean]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Setbit[K](key: K, offset: Long, value: Boolean)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerBoolean
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandInteger[Boolean]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Setex[K, V](key: K, seconds: Long, value: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K] with RedisCommandStatusBoolean
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandStatus[Boolean]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Setnx[K, V](key: K, value: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K] with RedisCommandIntegerBoolean
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandInteger[Boolean]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Setrange[K, V](key: K, offset: Long, value: V)(implicit redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any
case class Strlen[K](key: K)(implicit redisKey: ByteStringSerializer[K]) extends SimpleClusterKey[K] with RedisCommandIntegerLong
Attributes
- Source:
- Strings.scala
- Graph
- Supertypes
- trait Serializabletrait Producttrait Equalstrait RedisCommandIntegerLongtrait RedisCommandInteger[Long]class SimpleClusterKey[K]trait ClusterKeyclass Objecttrait Matchableclass Any