I'm using Puma and Nginx to run my Rubinius app.
I would like to separate my URL requests.
The first one would be for API requests, the second one for other requests.
I think Puma already makes threading but I want to be sure that web requests won't block a thread what leads to a stop during my API requests. I suppose that if a thread is busy, Puma will create another one but I want to be sure that one is always available for API requests.
My main point here is to "save" a thread for URL requests which are what my users need the most.