Class BlockingAutoSuggestCommandsImpl<K>

java.lang.Object
io.quarkus.redis.runtime.datasource.AbstractRedisCommandGroup
io.quarkus.redis.runtime.datasource.BlockingAutoSuggestCommandsImpl<K>
All Implemented Interfaces:
AutoSuggestCommands<K>, RedisCommands

public class BlockingAutoSuggestCommandsImpl<K> extends AbstractRedisCommandGroup implements AutoSuggestCommands<K>
  • Constructor Details

  • Method Details

    • ftSugAdd

      public long ftSugAdd(K key, String string, double score, boolean increment)
      Description copied from interface: AutoSuggestCommands
      Execute the command FT.SUGADD. Summary: Add a suggestion string to an auto-complete suggestion dictionary Group: auto-suggest
      Specified by:
      ftSugAdd in interface AutoSuggestCommands<K>
      Parameters:
      key - the suggestion dictionary key
      string - the suggestion string to index
      score - the floating point number of the suggestion string's weight
      increment - increments the existing entry of the suggestion by the given score, instead of replacing the score. This is useful for updating the dictionary based on user queries in real time.
      Returns:
      A uni emitting the current size of the suggestion dictionary.
    • ftSugDel

      public boolean ftSugDel(K key, String string)
      Description copied from interface: AutoSuggestCommands
      Execute the command FT.SUGDEL. Summary: Delete a string from a suggestion index Group: auto-suggest
      Specified by:
      ftSugDel in interface AutoSuggestCommands<K>
      Parameters:
      key - the suggestion dictionary key
      string - the suggestion string to index
      Returns:
      A uni emitting true if the value was found, false otherwise
    • ftSugGet

      public List<Suggestion> ftSugGet(K key, String prefix)
      Description copied from interface: AutoSuggestCommands
      Execute the command FT.SUGGET. Summary: Get completion suggestions for a prefix Group: auto-suggest
      Specified by:
      ftSugGet in interface AutoSuggestCommands<K>
      Parameters:
      key - the suggestion dictionary key
      prefix - is prefix to complete on.
      Returns:
      A uni emitting a list of the top suggestions matching the prefix, optionally with score after each entry.
    • ftSugGet

      public List<Suggestion> ftSugGet(K key, String prefix, GetArgs args)
      Description copied from interface: AutoSuggestCommands
      Execute the command FT.SUGGET. Summary: Get completion suggestions for a prefix Group: auto-suggest
      Specified by:
      ftSugGet in interface AutoSuggestCommands<K>
      Parameters:
      key - the suggestion dictionary key
      prefix - is prefix to complete on.
      args - the extra argument, must not be null
      Returns:
      A uni emitting true if the value was found, false otherwise
    • ftSugLen

      public long ftSugLen(K key)
      Description copied from interface: AutoSuggestCommands
      Execute the command FT.SUGLEN. Summary: Get the size of an auto-complete suggestion dictionary Group: auto-suggest
      Specified by:
      ftSugLen in interface AutoSuggestCommands<K>
      Parameters:
      key - the suggestion dictionary key
      Returns:
      A uni emitting the current size of the suggestion dictionary.