RedisCommandsF
final
class RedisCommandsF[F[_], K, V](val underlying: RedisAsyncCommands[K, V], codec: RedisCodec[K, V])(implicit F: Async[F], V: ClassTag[V], K: ClassTag[K]) extends AsyncCallCommands[F, K, V] with AclCommands[F, K, V] with BaseCommands[F, K, V] with GeoCommands[F, K, V] with HashCommands[F, K, V] with HLLCommands[F, K, V] with KeyCommands[F, K, V] with ListCommands[F, K, V] with ScriptingCommands[F, K, V] with ServerCommands[F, K, V] with SetCommands[F, K, V] with SortedSetCommands[F, K, V] with StreamCommands[F, K, V] with StringCommands[F, K, V]
class Object
trait Matchable
class Any
Value members
Inherited methods
Eval Lua Script
Eval Lua Script
Data type conversion is slightly odd. see[https://redis.io/commands/eval] Lettuce/Redis cant recognize "Redis status reply" or "Redis bulk reply" now (lettuce-core:6.1.5, redis: 6.2.1).
- Inherited from
- ScriptingCommands
Eval Lua Script
Eval Lua Script
Data type conversion is slightly odd. see[https://redis.io/commands/eval] Lettuce/Redis cant recognize "Redis status reply" or "Redis bulk reply" now (lettuce-core:6.1.5, redis: 6.2.1).
- Inherited from
- ScriptingCommands
def georadius(key: K, longitude: Double, latitude: Double, distance: Double, unit: Unit, geoRadiusStoreArgs: GeoRadiusStoreArgs[K]): F[Long]
- Inherited from
- GeoCommands
def georadiusbymember(key: K, member: V, distance: Double, unit: Unit, geoRadiusStoreArgs: GeoRadiusStoreArgs[K]): F[Long]
- Inherited from
- GeoCommands
def georadiusbymember(key: K, member: V, distance: Double, unit: Unit, geoArgs: GeoArgs): F[Seq[GeoWithin[V]]]
- Inherited from
- GeoCommands
def geosearchstore(destination: K, key: K, reference: GeoRef[K], predicate: GeoPredicate, geoArgs: GeoArgs, storeDist: Boolean): F[Long]
- Inherited from
- GeoCommands
def migrate(host: String, port: Int, db: Int, timeout: Long, migrateArgs: MigrateArgs[K]): F[String]
- Inherited from
- KeyCommands
def xclaim(key: K, consumer: Consumer[K], args: XClaimArgs, messageIds: String*): F[Seq[StreamMessage[K, V]]]
- Inherited from
- StreamCommands
def xclaim(key: K, consumer: Consumer[K], minIdleTime: Long, messageIds: String*): F[Seq[StreamMessage[K, V]]]
- Inherited from
- StreamCommands
def xpending(key: K, consumer: Consumer[K], range: RedisRange[String], limit: Limit): F[Seq[PendingMessage]]
- Inherited from
- StreamCommands
def xreadgroup(consumer: Consumer[K], args: XReadArgs, streams: StreamOffset[K]*): F[Seq[StreamMessage[K, V]]]
- Inherited from
- StreamCommands
def zrevrangebyscoreWithScores(key: K, range: RedisRange[Double], limit: Limit): F[Seq[(Double, V)]]
- Inherited from
- SortedSetCommands