I've recently found that some people prefer using unicorn_rails
instead of the default WEBrick as a web server for developing Rails applications.
I understand that if I wanted to use unicorn in production, it could make kind of sense to try it out in development, but since the configuration is different in production, is it even relevant?
Is there any real, tangible advantage that I would get from using thin
or unicorn
instead of WEBrick for developing a Rails application, such as speed or some additional features? Or is this just a matter of personal preference?