Class AbstractTopKCommands<K,V>
- java.lang.Object
-
- io.quarkus.redis.runtime.datasource.AbstractRedisCommands
-
- io.quarkus.redis.runtime.datasource.AbstractTopKCommands<K,V>
-
- Direct Known Subclasses:
ReactiveTopKCommandsImpl
public class AbstractTopKCommands<K,V> extends AbstractRedisCommands
-
-
Field Summary
-
Fields inherited from class io.quarkus.redis.runtime.datasource.AbstractRedisCommands
marshaller, redis
-
-
Constructor Summary
Constructors Constructor Description AbstractTopKCommands(RedisCommandExecutor redis, Class<K> k, Class<V> v)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>_topkAdd(K key, V item)(package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>_topkAdd(K key, V... items)(package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>_topkIncrBy(K key, Map<V,Integer> couples)(package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>_topkIncrBy(K key, V item, int increment)(package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>_topkList(K key)(package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>_topkListWithCount(K key)(package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>_topkQuery(K key, V item)(package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>_topkQuery(K key, V... items)(package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>_topkReserve(K key, int topk)(package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>_topkReserve(K key, int topk, int width, int depth, double decay)-
Methods inherited from class io.quarkus.redis.runtime.datasource.AbstractRedisCommands
execute
-
-
-
-
Constructor Detail
-
AbstractTopKCommands
AbstractTopKCommands(RedisCommandExecutor redis, Class<K> k, Class<V> v)
-
-
Method Detail
-
_topkIncrBy
io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response> _topkIncrBy(K key, V item, int increment)
-
_topkIncrBy
io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response> _topkIncrBy(K key, Map<V,Integer> couples)
-
_topkList
io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response> _topkList(K key)
-
_topkListWithCount
io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response> _topkListWithCount(K key)
-
_topkQuery
io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response> _topkQuery(K key, V... items)
-
_topkReserve
io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response> _topkReserve(K key, int topk)
-
_topkReserve
io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response> _topkReserve(K key, int topk, int width, int depth, double decay)
-
-