redis.api.strings

Members list

Type members

Classlikes

case class Append[K, V](key: K, value: V)(using redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K], RedisCommandIntegerLong

Attributes

Source
Append.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Bitcount[K](key: K)(using x$2: ByteStringSerializer[K]) extends SimpleClusterKey[K], RedisCommandIntegerLong

Attributes

Source
Bitcount.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class BitcountRange[K](key: K, start: Long, end: Long)(using x$4: ByteStringSerializer[K]) extends SimpleClusterKey[K], RedisCommandIntegerLong

Attributes

Source
BitcountRange.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Bitop[K, KK](operation: BitOperator, destkey: K, keys: Seq[KK])(using redisKey: ByteStringSerializer[K], redisKeys: ByteStringSerializer[KK]) extends RedisCommandIntegerLong

Attributes

Source
Bitop.scala
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class Bitpos[K](key: K, bit: Long, start: Long, end: Long)(using x$5: ByteStringSerializer[K]) extends SimpleClusterKey[K], RedisCommandIntegerLong

Attributes

Source
Bitpos.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Decr[K](key: K)(using x$2: ByteStringSerializer[K]) extends SimpleClusterKey[K], RedisCommandIntegerLong

Attributes

Source
Decr.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Decrby[K](key: K, decrement: Long)(using x$3: ByteStringSerializer[K]) extends SimpleClusterKey[K], RedisCommandIntegerLong

Attributes

Source
Decrby.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Get[K, R](key: K)(using redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends SimpleClusterKey[K], RedisCommandBulkOptionByteString[R]

Attributes

Source
Get.scala
Supertypes
trait Serializable
trait Product
trait Equals
trait RedisCommand[Bulk, Option[R]]
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Getbit[K](key: K, offset: Long)(using x$3: ByteStringSerializer[K]) extends SimpleClusterKey[K], RedisCommandIntegerBoolean

Attributes

Source
Getbit.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Getdel[K, R](key: K)(using redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends SimpleClusterKey[K], RedisCommandBulkOptionByteString[R]

Attributes

Source
Getdel.scala
Supertypes
trait Serializable
trait Product
trait Equals
trait RedisCommand[Bulk, Option[R]]
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Getrange[K, R](key: K, start: Long, end: Long)(using redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends SimpleClusterKey[K], RedisCommandBulkOptionByteString[R]

Attributes

Source
Getrange.scala
Supertypes
trait Serializable
trait Product
trait Equals
trait RedisCommand[Bulk, Option[R]]
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Getset[K, V, R](key: K, value: V)(using redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V], deserializerR: ByteStringDeserializer[R]) extends SimpleClusterKey[K], RedisCommandBulkOptionByteString[R]

Attributes

Source
Getset.scala
Supertypes
trait Serializable
trait Product
trait Equals
trait RedisCommand[Bulk, Option[R]]
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Incr[K](key: K)(using x$2: ByteStringSerializer[K]) extends SimpleClusterKey[K], RedisCommandIntegerLong

Attributes

Source
Incr.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Incrby[K](key: K, increment: Long)(using x$3: ByteStringSerializer[K]) extends SimpleClusterKey[K], RedisCommandIntegerLong

Attributes

Source
Incrby.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Incrbyfloat[K](key: K, increment: Double)(using x$3: ByteStringSerializer[K]) extends SimpleClusterKey[K], RedisCommandBulkOptionDouble

Attributes

Source
Incrbyfloat.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Mget[K, R](keys: Seq[K])(using redisKey: ByteStringSerializer[K], deserializerR: ByteStringDeserializer[R]) extends MultiClusterKey[K], RedisCommandMultiBulk[Seq[Option[R]]]

Attributes

Source
Mget.scala
Supertypes
trait Serializable
trait Product
trait Equals
class MultiClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Mset[K, V](keysValues: Map[K, V])(using redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends ClusterKey, RedisCommandStatusBoolean

Attributes

Source
Mset.scala
Supertypes
trait Serializable
trait Product
trait Equals
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Msetnx[K, V](keysValues: Map[K, V])(using redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends RedisCommandIntegerBoolean

Attributes

Source
Msetnx.scala
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class Psetex[K, V](key: K, milliseconds: Long, value: V)(using redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K], RedisCommandStatusBoolean

Attributes

Source
Psetex.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Set[K, V](key: K, value: V, exSeconds: Option[Long], pxMilliseconds: Option[Long], NX: Boolean, XX: Boolean)(using redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K], RedisCommandRedisReply[Boolean]

Attributes

Source
Set.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Setbit[K](key: K, offset: Long, value: Boolean)(using x$4: ByteStringSerializer[K]) extends SimpleClusterKey[K], RedisCommandIntegerBoolean

Attributes

Source
Setbit.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Setex[K, V](key: K, seconds: Long, value: V)(using redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K], RedisCommandStatusBoolean

Attributes

Source
Setex.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Setnx[K, V](key: K, value: V)(using redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K], RedisCommandIntegerBoolean

Attributes

Source
Setnx.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Setrange[K, V](key: K, offset: Long, value: V)(using redisKey: ByteStringSerializer[K], convert: ByteStringSerializer[V]) extends SimpleClusterKey[K], RedisCommandIntegerLong

Attributes

Source
Setrange.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all
case class Strlen[K](key: K)(using x$2: ByteStringSerializer[K]) extends SimpleClusterKey[K], RedisCommandIntegerLong

Attributes

Source
Strlen.scala
Supertypes
trait Serializable
trait Product
trait Equals
class SimpleClusterKey[K]
trait ClusterKey
class Object
trait Matchable
class Any
Show all