0

I'm caching JSON objects in Redis whose properties include an array of geocoordinates. Something like this:

{
   "name": "bob",
   "points": [[31.0234, 35.3458], [38.0873, 34.8863]]

If I have a bounding box, how can I query for a list of objects which fall in that box?

Boris K
  • 3,442
  • 9
  • 48
  • 87

1 Answers1

1

RediSearch currently does not have support for geo-box queries.

Ariel
  • 529
  • 2
  • 13