from redisearch import Client
client = Client('myIndex')
res = client.search(search_key)
I want 50 results for res
.
from redisearch import Client
client = Client('myIndex')
res = client.search(search_key)
I want 50 results for res
.
Read the documentation - you'll need to use the paging
method of the Query object: http://redisearch.io/python_client/#paging