大佬下场了😄
三咲智子 Kevin Deng: I'm developing a #Mastodon Web client based on Nuxt 3! 🌟
Working with Nuxt team @antfu7 @patak_dev @danielcroe ! 😆 They're sooooooo amazing!
@mashiro Is this the one?
@jsailo no, not a fan of Vue
@mashiro Be a fan of something at least 😂 Northeast.one's Explore still doesn't work
@jsailo right
@mashiro Comment from the author of Sidekiq
Please don’t use sidekiq with a concurrency higher than 25. You will just slow things down.
Link: https://old.reddit.com/r/rails/comments/yse6no/scaling_mastodon_in_the_face_of_an_exodus/ivz1clf/
@jsailo look P1, nornally there should be 0 in "Enqueued", if your sidekiq threads are not enough, than it will quickly reach a large amount. To increase the thread, you should also increase the postgress db pool number, and also, take care of the memory usage (p2)
Thanks @mashiro.
How do I do this?
To increase the thread, you should also increase the postgress db pool number, and also, take care of the memory usage
@jsailo edit postgresql.conf, change max_connections
@mashiro Thanks!
Q1: How do I calculate the optimum value of max_connection for my server? Google it? Or you have an idea?
Q2: Need to run all those RAILS_ENV=production ...precompile commands after that?