|
|
|
Ask HN: What should I build an iOS API in?
|
|
6 points
by evilswan
5368 days ago
|
|
The system will be a CRUD back end for an iOS app, later offering a web app, then otehr clients, etc. I'm outsourcing it, so the choice of language/appserver will be up to the lucky (!) programmer. Will be RESTful with JSON data exchange. Linux on EC2. Other than that - what would you say would be the best route for: - Low system overhead
- Fast performance
- Low resource usage
- Scalability to multiple appservers (eventually) Ruby on Rails?
Pyton / Django?
PHP on a framework? Or doesn't it matter? |
|
With this setup, you can easily throw more DB instances in the pool to grow with your needs. The frontend should be able to handle as many requests as needed (especially Node which has VERY lightweight threads, I hear). You'll just need to reduce the turnaround time via the queue.