logoalt Hacker News

phendrenad211/07/20242 repliesview on HN

Does that use ractors, or plan on using ractors? Seems like it uses fibers. Is it considered the best ruby server these days?


Replies

wutwutwat11/07/2024

Best server is going to vary on your preferences and workload. Puma is a great multithreaded server, and it can do fork based workers as well. But unicorn is the go to for process/fork based workers.

Falcon is newer and built on libraries that use the new fibers api.

Not sure about ractors, but the code is there, have a look

show 1 reply
tarellel11/08/2024

At the moment I believe falcon uses fibers