Webrick as production server vs. Thin or Unicorn?

前端 未结 5 1089
一生所求
一生所求 2020-12-07 10:09

It seems like it\'s taken for granted that you must not use Webrick as production server, but I can\'t really find anywhere mentioning why. The consensus seems to be: \"Webr

5条回答
  •  不思量自难忘°
    2020-12-07 10:42

    The greatest weakness of webrick when running in production mode is that it's single threaded, single process web server, meaning that it is capable of serving only one single http request at a time.

提交回复
热议问题