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
     
  • Method Summary

    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>
     
    (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, isMap

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

  • Method Details

    • _topkAdd

      io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response> _topkAdd(K key, V item)
    • _topkAdd

      io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response> _topkAdd(K key, V... items)
    • _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 item)
    • _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)