1

RediSearch looks promising after reading https://redislabs.com/blog/search-benchmarking-redisearch-vs-elasticsearch/. We use elasticsearch currently. We rely heavily on its polygon query feature https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-geo-polygon-query.html.

I couldn't find polygon query in RediSearch. Is it there under different name? Is there anyone out using RediSearch for polygon query? How do you achieve that?

For now, only option I see is to use Geo filter to get points in different circles, and then find intersection of those with my polygon in application code.

sattu
  • 632
  • 1
  • 22
  • 37

1 Answers1

1

I'm in the exact same boat, and it seems like as of v1.4.8 geo filters are limited to geo radius filters. However, it does look like an issue was created to add support for geo polygon filters:

https://github.com/RedisLabsModules/RediSearch/issues/680

yomikaze
  • 19
  • 2