As a social game developer I am responsible for architecting two - or more - highly scalable web services. Where I am stumped is making the right choice of language and framework for implementation. By the nature of social games, the services are public facing and must be able to scale to millions of users. This is a purely software question about REST web services and the languages to implement them.
The two services that I know about right now have a few requirements that I shall summarise in case it influences an answer.
Game Data Service - Communication between client / server must be secure - Must be able to interface with Membase (ie. Memcached protocol) - Optional but advantageous AMF support - Also OAuth support could be advantageous
Stats Reporting Service - REST - MongoDB interface required
Here's the languages I have researched so far, Java / JAX-WS, PHP / Zend Framework, Python. I have written service stubs in all 3 languages, but I am now finding it difficult to choose which one to commit to. Common requirements of the services is that they must scale very well, so performance, stability and security is paramount.
Java seems to be the biggest player in the web service problem domain, however I am worried about committing to it because of the involvement with BlazeDS and Tomcat. I haven't worked with BlazeDS or Tomcat before, whether either is unsuitable for a production environment I don't yet know but am researching right after I make this post. Otherwise Java feels like a good fit to this problem domain, if not a little tricky to work with. I'm not afraid of complexity, but I am mindful of choosing the correct tool for the job.
PHP seems like less of a good fit. It is more difficult to architect a graceful web service with clean URLs and clean implementation logic. I also have concerns over the performance of Zend Framework, and security. Though it can be quick to cobble something together, I am unsure if it will scale gracefully. While I know it is certainly possible to produce the required result in PHP, again I am being mindful of which tool is the best for the job.
Finally we come to Python. I quite like the idea of writing the services in Python, however again I am unsure. I have only just begun to research into this language, and it looks as if it technically supports everything I need, though I don't yet know much about writing a REST service in Python. If any Python experts care to share their experience I would appreciate it. If Python is a good fit for the problem then I would lean towards using it, partly because I quite like the language, but that says nothing about stability or scalability.
If any web service experts out there are willing to throw ideas into the mix then I am open to suggestions. I just want to make sure that whichever language I commit to is the best possible fit for the purpose.