I've been using Redis's Geohash capability. However, it doesn't seem this can scale well, as the index is implemented as a SortedSet, which cannot be partitioned. What is recommended for this problem? I will have frequent writes and reads both.
Asked
Active
Viewed 52 times
1
-
1Did you try redisearch.io? https://oss.redislabs.com/redisearch/Overview.html#geo_index – Guy Korland Sep 14 '19 at 19:47
-
1Thanks. I just took a look at that. The section on "Scalable Distributed Search" basically does provide the answer to this question. Since asking this, I was starting to consider building what is referred to there as "Index Partitioning". It looks like you can also pay for something like that through RediSearch. – vmayer Sep 15 '19 at 14:31