Browsing index pages (2 articles)
↧
Using geospatial commands in rethinkdb with changefeed
right now I have a little problem: I want to use geospatial commands (like getIntersecting) together with the changefeed feature of rethinkdb but I always get: RqlRuntimeError: Cannot call changes on...
View ArticleAnswer by Jorge Silva for Using geospatial commands in rethinkdb with changefeed
You can't use .getIntersecting with .changes, but you can write essentially the same query by adding a filter after .changes that checks if the loc is within the circle. While .changes limits what you...
View Article
Browsing index pages (2 articles)