1
from redisearch import Client

client = Client('myIndex')
res = client.search(search_key)

I want 50 results for res.

Guy Korland
  • 9,139
  • 14
  • 59
  • 106

1 Answers1

5

Read the documentation - you'll need to use the paging method of the Query object: http://redisearch.io/python_client/#paging

Itamar Haber
  • 47,336
  • 7
  • 91
  • 117
  • The link is dead, and there's no info on `paging` even on the client docs (https://redis-py.readthedocs.io/). No info either on how to tweak LIMIT. – vgrafe Mar 08 '23 at 03:10