Yo yo yo! Remember I promised to write about scaling mastodon.social to 43k users? I did it! https://medium.com/@Gargron/scaling-mastodon-1becde463090
@Gargron 8 workers with 2 threads ? Wow, seems like a serious problem :(
@TouitTouit What do you mean?
@Gargron I mean Ruby is poor with multithreading (understand system threading). Puma was designed to combine multiple processes and multiple threads (Ruby threads). If you have more processes than (Ruby) threads, you're obviously do it wrong.
@TouitTouit MRI is not the only Ruby out there. There's Rubinius and JRuby. Puma's threads might work better there.
@Gargron sure. You and I know that.