On Fri, 31 May 2013 18:49:29 +0900 hommura hiroaki <hommura_hiroaki@outlook.com> wrote:
Actually, I have a site now providing two services. One is web powered by Dancer, and one is api server. http://hostname/forum ==> all HTML staff and of course database staffhttp://hostname/api ==> RESTful api, only retrieve data from backend database and return it back to client. And now /api request grows up and affect /forum. So is it possible to let Starman process /api directly, and dancer handle /forum only? I dont want to introduce nginx or anything else.
How would Starman "process" /api ? Starman doesn't do much by itself, it's a server which will process requests and pass them through to your code. I'm not sure quite what you're expecting it to do?