Hashes

redis.commands.Hashes
trait Hashes extends Request

Attributes

Source:
Hashes.scala
Graph
Supertypes
trait Request
class Object
trait Matchable
class Any
Known subtypes

Members list

Concise view

Value members

Concrete methods

def hdel(key: String, fields: String*): Future[Long]

Attributes

Source:
Hashes.scala
def hexists(key: String, field: String): Future[Boolean]

Attributes

Source:
Hashes.scala

Attributes

Source:
Hashes.scala

Attributes

Source:
Hashes.scala
def hincrby(key: String, fields: String, increment: Long): Future[Long]

Attributes

Source:
Hashes.scala
def hincrbyfloat(key: String, fields: String, increment: Double): Future[Double]

Attributes

Source:
Hashes.scala

Attributes

Source:
Hashes.scala
def hlen(key: String): Future[Long]

Attributes

Source:
Hashes.scala
def hmget[R : ByteStringDeserializer](key: String, fields: String*): Future[Seq[Option[R]]]

Attributes

Source:
Hashes.scala
def hmset[V : ByteStringSerializer](key: String, keysValues: Map[String, V]): Future[Boolean]

Attributes

Source:
Hashes.scala
def hscan[R : ByteStringDeserializer](key: String, cursor: Int, count: Option[Int], matchGlob: Option[String]): Future[Cursor[Map[String, R]]]

Attributes

Source:
Hashes.scala
def hset[V : ByteStringSerializer](key: String, field: String, value: V): Future[Boolean]

Attributes

Source:
Hashes.scala
def hsetnx[V : ByteStringSerializer](key: String, field: String, value: V): Future[Boolean]

Attributes

Source:
Hashes.scala

Attributes

Source:
Hashes.scala

Inherited methods

def send[T](redisCommand: RedisCommand[_ <: RedisReply, T]): Future[T]

Attributes

Inherited from:
Request
Source:
Request.scala

Implicits

Inherited implicits

Attributes

Inherited from:
Request
Source:
Request.scala