0

I am using RediSearch and storing the data in an Index through documents. I want to get all the documents from the Index, please suggest.

chaitra d
  • 45
  • 5

1 Answers1

2

This is half of an answer but perhaps it will spark a solution for you.

I can't speak to the Spring Data Redis part—not my jam—but in RediSearch itself you can get all the documents in the index by simply passing * as your query:

> FT.SEARCH my:index *
Guy Royse
  • 2,739
  • 12
  • 9