HackerTrans
TopNewTrendsCommentsPastAskShowJobs

chris12321

no profile record

comments

chris12321
·10 माह पहले·discuss
A majority of people in North West England has Irish ancestry. Are those people not British?
chris12321
·2 वर्ष पहले·discuss
> In my experience, most web applications are terminating HTTP connections from clients, then reaching out over a network to database servers, etc. to do work. This is very much IO-bound, so I'm not sure how this wouldn't be a good fit for most Rails applications.

Most rails applications are deployed using a multi-threaded application server such as Puma, a thread processes a single request and when it encounters IO (or calls out to a C function) the thread gives up its hold of the GVL and another thread can run. You can use 100% of your resources this way without the added complexity of parallelism within a single request.