Building highly scalable web services
Posted
by christopher-mccann
on Stack Overflow
See other posts from Stack Overflow
or by christopher-mccann
Published on 2010-04-02T14:46:55Z
Indexed on
2010/04/02
15:03 UTC
Read the original article
Hit count: 311
My team and I are in the middle of developing an application which needs to be able to handle pretty heavy traffic. Not facebook level but in the future I would like to be able to scale to that without massive code re-writes.
My thought was to modularise out everything into seperate services with their own interfaces. So for example messaging would have a messaging interface that might have send and getMessages() as methods and then the PHP web app would simply query this interface through soap or curl or something like that. The messaging application could then be any kind of application so a Java application or Python or whatever was suitable for that particular functionality with its own seperate database shard.
Is this a good approach?
© Stack Overflow or respective owner