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.