You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was looking for a background job implementation using Fibers and ended up here.
I couldn't find any information on IO_EVENT_SELECTOR env variable. Can you point me in the right direction?
Instead of a fixed concurrency, why not a fiber per job model (like how falcon is fiber per request) with a max concurrency config option (enforced by Async::Semaphore)?
Add an option to disable the forced context switch since If the jobs are IO bound, then the event reactor of Async is sufficient.
The text was updated successfully, but these errors were encountered:
I got that. What I meant is, instead of restricting the number of concurrent jobs, leave it unrestricted. For ex, Puma has a fixed number of workers while falcon doesn't. A fixed concurrency is required for threads but can be dispensed with for Fiber + Async.
Will you be open to a PR for that? I'm also not free atm, but I would love to contribute
I was looking for a background job implementation using Fibers and ended up here.
IO_EVENT_SELECTOR
env variable. Can you point me in the right direction?The text was updated successfully, but these errors were encountered: