redisearch-py
redisearch-py copied to clipboard
RediSearch python client
I think it would be nice if there were a RediSearch asyncio Python Client, specifically, one based on the [aioredis](https://github.com/aio-libs/aioredis) asyncio (PEP 3156) Redis client library. Looking at the redisearch-py...
Is there a way to have redis-py commands and redisearch-py commands in the same pipeline?
Related to RediSearch/RediSearch#1986
Q1: When I use "search()" and show the result, I can see 1277 in total but I can only see 10 resaults. How can I see all the 1277 resaults?...
The following query raises a `ResponseError`: ```py In [50]: from redisearch.aggregation import AggregateRequest, Asc ...: ...: req = AggregateRequest('*').group_by( ...: ['@published_year'], reducers.avg('average_rating').alias('average_rating_for_year') ...: ).sort_by( ...: Asc('@average_rating_for_year') ...: ).limit(0, 10).filter('@published_year >...
Hi, I'm trying to use this library. When i was searching for a key in the stored docs it's giving correctly. After that, I've tried to create another index from...