Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
tishun committed Feb 5, 2025
1 parent d58968e commit b30fc58
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/main/java/io/lettuce/core/RediSearchCommandBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ public Command<K, V, String> ftCreate(K index, CreateArgs<K, V> createArgs, List

}

/**
* Drop the index with the given name.
*
* @param index the index name
* @param deleteDocumentKeys whether to delete the document keys
* @return the result of the drop command
*/
public Command<K, V, String> ftDropindex(K index, boolean deleteDocumentKeys) {
notNullKey(index);

Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
x-client-libs-stack-image: &client-libs-stack-image
image: "redislabs/client-libs-test:${REDIS_STACK_VERSION:-8.0-M04-pre}"
image: "redislabs/client-libs-test:${REDIS_STACK_VERSION:-8.0-M02}"

services:

Expand Down

0 comments on commit b30fc58

Please sign in to comment.