Interface ReactiveTransactionalAutoSuggestCommands<K>
- Type Parameters:
K- the type of the key
- All Superinterfaces:
ReactiveTransactionalRedisCommands
- All Known Implementing Classes:
ReactiveTransactionalAutoSuggestCommandsImpl
public interface ReactiveTransactionalAutoSuggestCommands<K>
extends ReactiveTransactionalRedisCommands
Allows executing commands from the
auto-suggest group (requires the Redis Search module from Redis stack).
See the auto-suggest command list for further information about
these
commands.
This API is intended to be used in a Redis transaction (MULTI), thus, all command methods return Uni<Void>.-
Method Summary
Modifier and TypeMethodDescriptiondefault io.smallrye.mutiny.Uni<Void>Execute the command FT.SUGADD.io.smallrye.mutiny.Uni<Void>Execute the command FT.SUGADD.io.smallrye.mutiny.Uni<Void>Execute the command FT.SUGDEL.io.smallrye.mutiny.Uni<Void>Execute the command FT.SUGGET.io.smallrye.mutiny.Uni<Void>Execute the command FT.SUGGET.io.smallrye.mutiny.Uni<Void>Execute the command FT.SUGLEN.Methods inherited from interface io.quarkus.redis.datasource.ReactiveTransactionalRedisCommands
getDataSource
-
Method Details
-
ftSugAdd
Execute the command FT.SUGADD. Summary: Add a suggestion string to an auto-complete suggestion dictionary Group: auto-suggest- Parameters:
key- the suggestion dictionary keystring- the suggestion string to indexscore- the floating point number of the suggestion string's weight- Returns:
- A
Uniemittingnullwhen the command has been enqueued successfully in the transaction, a failure otherwise. In the case of failure, the transaction is discarded.
-
ftSugAdd
Execute the command FT.SUGADD. Summary: Add a suggestion string to an auto-complete suggestion dictionary Group: auto-suggest- 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
Uniemittingnullwhen the command has been enqueued successfully in the transaction, a failure otherwise. In the case of failure, the transaction is discarded.
-
ftSugDel
Execute the command FT.SUGDEL. Summary: Delete a string from a suggestion index Group: auto-suggest- Parameters:
key- the suggestion dictionary keystring- the suggestion string to index- Returns:
- A
Uniemittingnullwhen the command has been enqueued successfully in the transaction, a failure otherwise. In the case of failure, the transaction is discarded.
-
ftSugget
Execute the command FT.SUGGET. Summary: Get completion suggestions for a prefix Group: auto-suggest- Parameters:
key- the suggestion dictionary keyprefix- is prefix to complete on.- Returns:
- A
Uniemittingnullwhen the command has been enqueued successfully in the transaction, a failure otherwise. In the case of failure, the transaction is discarded.
-
ftSugget
Execute the command FT.SUGGET. Summary: Get completion suggestions for a prefix Group: auto-suggest- Parameters:
key- the suggestion dictionary keyprefix- is prefix to complete on.args- the extra argument, must not benull- Returns:
- A
Uniemittingnullwhen the command has been enqueued successfully in the transaction, a failure otherwise. In the case of failure, the transaction is discarded.
-
ftSugLen
Execute the command FT.SUGLEN. Summary: Get the size of an auto-complete suggestion dictionary Group: auto-suggest- Parameters:
key- the suggestion dictionary key- Returns:
- A
Uniemittingnullwhen the command has been enqueued successfully in the transaction, a failure otherwise. In the case of failure, the transaction is discarded.
-