You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Folks, before now this wasn't possible and I had to have two databases/servers/APIs. One for Parse and one for my PostGis server.
My PostGis stuff is very small (25mb) and I can't see it ever growing over 500mb. I think MongoDB supports GIS functions? What if I wanted to store the data in Parse's MongoDB? Would it play well together? Could I restructure the PostGis tables as a Parse class but have an additional field for the geometry? I don't need to access the geometry from Parse but it would be very helpful to maintain/access the other fields/columns instead of managing the same data two places.
Please tell me which options are possible:
Store the data in MongoDB in it's own table (only need to manage one database)
Store the data in MongoDB as a Parse Class + have Parse SDK's be able to read/write all fields except geometry
I understand I'll have to rewrite my Django Postgis API to read MongoDB table.
The text was updated successfully, but these errors were encountered:
Those are both possible however MongoDB's support for geometry queries is only OK, and certainly not as good as PostGIS. I'd recommend checking if your queries will be possible and performant in MongoDB before investing in a migration off of PostGIS.
Hi Folks, before now this wasn't possible and I had to have two databases/servers/APIs. One for Parse and one for my PostGis server.
My PostGis stuff is very small (25mb) and I can't see it ever growing over 500mb. I think MongoDB supports GIS functions? What if I wanted to store the data in Parse's MongoDB? Would it play well together? Could I restructure the PostGis tables as a Parse class but have an additional field for the geometry? I don't need to access the geometry from Parse but it would be very helpful to maintain/access the other fields/columns instead of managing the same data two places.
Please tell me which options are possible:
I understand I'll have to rewrite my Django Postgis API to read MongoDB table.
The text was updated successfully, but these errors were encountered: