Ariel Shtul

Results 123 comments of Ariel Shtul

@helderjbe `LIMIT` is by default `10`. You can use `LIMIT 0 11` to get all results.

@helderjbe When a cursor is used, the query is run once, and the results are being fetched gradually. If multiple queries are used with changing offset/num, the query and iterator...

Hi, "The" is a default stopword and therefore it is filtered. You can apply you own stopword list when you create the index.

@StrathCole thank you for the issue. You are the master branch, correct? Can you please look at [this branch](https://github.com/RediSearch/RediSearch/tree/issue2152) where I've made a fix and confirm it eliminates the issue?...

@StrathCole Do you have expiration or eviction policies for the indexes?

> Don't we want to remove auto memory entirely? If so why we still us it? For the time being, we cannot until we run nightly sanitizer.

@Delicious-Bacon [FIRST_VALUE](https://redis.io/docs/stack/search/reference/aggregations/#first_value) is one of the functions supported by RediSearch.

@MeirShpilraien , I will remove the union timeout from this PR for the 2.4 branch. The union timeout should go to the master branch first.

@tombatron Thank you for the PR. Can you please add a test?

@Lucabenj to disable steming at query time you can add the `VERBATIM` keyword. ``` > ft.explain se @t:lovers return 1 t verbatim "@t:lovers\n" ```