redisearch-py icon indicating copy to clipboard operation
redisearch-py copied to clipboard

RediSearch python client

Results 27 redisearch-py issues
Sort by recently updated
recently updated
newest added

https://oss.redislabs.com/redisearch/Query_Syntax/ is not working.

docs

how do i do a check in the index to know if a document exists or not? I created an index which is based on prefixes with the hash. I...

docs

I use M1pro macbook pro, when run the docker I got WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was...

Query params for `search` functionality tested against `omer-query-params` branch

Hi all - first off, love the project! Using: `redisearch==2.1.1` I ran into an issue with `Client.aggregate` using an `AggregateRequest`. I want to put a `LIMIT 0 0` on one...

Due to the dependency on redisjson and [this bug there](https://github.com/RedisJSON/redisjson-py/issues/69)

Add support for `LOAD *` which loads all fields on FT.AGGREGATE. Related to RediSearch/RediSearch#2243 and RediSearch/RediSearch#2301

Hello, While doing the loop to get every columns in search result ``` _query = Query(f"{keywords}*").verbatim().paging(_start, _lenr) _data = _search.search(_query) _total = _data.total def c_app(itm): bulk = {} for col...