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>
-
Field Summary
Fields inherited from class io.quarkus.redis.runtime.datasource.AbstractRedisCommandGroup
ds, timeout -
Constructor Summary
ConstructorsConstructorDescriptionBlockingAutoSuggestCommandsImpl(RedisDataSource ds, ReactiveAutoSuggestCommands<K> reactive, Duration timeout) -
Method Summary
Methods inherited from class io.quarkus.redis.runtime.datasource.AbstractRedisCommandGroup
getDataSourceMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.quarkus.redis.datasource.autosuggest.AutoSuggestCommands
ftSugAddMethods inherited from interface io.quarkus.redis.datasource.RedisCommands
getDataSource
-
Constructor Details
-
BlockingAutoSuggestCommandsImpl
public BlockingAutoSuggestCommandsImpl(RedisDataSource ds, ReactiveAutoSuggestCommands<K> reactive, Duration timeout)
-
-
Method Details
-
ftSugAdd
Description copied from interface:AutoSuggestCommandsExecute the command FT.SUGADD. Summary: Add a suggestion string to an auto-complete suggestion dictionary Group: auto-suggest- Specified by:
ftSugAddin interfaceAutoSuggestCommands<K>- Parameters:
key- the suggestion dictionary keystring- the suggestion string to indexscore- the floating point number of the suggestion string's weightincrement- 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
Description copied from interface:AutoSuggestCommandsExecute the command FT.SUGDEL. Summary: Delete a string from a suggestion index Group: auto-suggest- Specified by:
ftSugDelin interfaceAutoSuggestCommands<K>- Parameters:
key- the suggestion dictionary keystring- the suggestion string to index- Returns:
- A uni emitting
trueif the value was found,falseotherwise
-
ftSugGet
Description copied from interface:AutoSuggestCommandsExecute the command FT.SUGGET. Summary: Get completion suggestions for a prefix Group: auto-suggest- Specified by:
ftSugGetin interfaceAutoSuggestCommands<K>- Parameters:
key- the suggestion dictionary keyprefix- 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
Description copied from interface:AutoSuggestCommandsExecute the command FT.SUGGET. Summary: Get completion suggestions for a prefix Group: auto-suggest- Specified by:
ftSugGetin interfaceAutoSuggestCommands<K>- Parameters:
key- the suggestion dictionary keyprefix- is prefix to complete on.args- the extra argument, must not benull- Returns:
- A uni emitting
trueif the value was found,falseotherwise
-
ftSugLen
Description copied from interface:AutoSuggestCommandsExecute the command FT.SUGLEN. Summary: Get the size of an auto-complete suggestion dictionary Group: auto-suggest- Specified by:
ftSugLenin interfaceAutoSuggestCommands<K>- Parameters:
key- the suggestion dictionary key- Returns:
- A uni emitting the current size of the suggestion dictionary.
-