skip to Main Content

How do I delete a Redis Index using Jedis?

I am trying to delete a index using Jedis. I have the following... public void deleteAll() { // Optionally drop and recreate the index try (Connection connection = jedis.getPool().getResource()) { if (connection.isConnected()) { connection.sendCommand(SearchProtocol.SearchCommand.DROPINDEX, "DROPINDEX", "spring-ai-example", "DD"); // Use your…

VIEW QUESTION
Back To Top
Search