I am trying to build an iOS app that takes the location of the user and then queries the backend for other users near him/her through a REST api.I have done some googling and my choices (given my experience) seem to be .
- Django - piston with geodjango.Hosting on webfaction probably.
- Google App Engine.
I am more inclined to the first choice since Google App Engine seems to be not so open and has a steep learning curve in the beginning.
Now doing location queries on a mysql database seems kinnof intimidating.My gut feeling is that there has to be something better.Afterall I dont want to reinvent the wheel!!
Can anyone please throw some light on
- how exactly I am going to location queries?..bounding recangles or something better?
- what database should i use?...non-relational or relational?
- If relational...should the databases be indexed by location?
- Should the location data be stored in a seperate table or the same table as other user data?
- Should I use timestamps to invalidate old location updates or is there any better method for doing that?(for example the database could itself peridically delete location updates).
I have been primarily an iOS developer so far and have minimal experience in building web apps.Any suggestion would be greatly appreciated.
If a similar question has been asked before feel free to point it out.
Thanks in advance. - samyzee!