Run Rails app with multiple workers in development

Gemfile

gem puma

Command-Line

$ bundle install

$ puma -t <x>:<y> -w <z>

Options

<x> ==> minimum number of threads (default: 0)

<y> ==> maximum number of threads (default: 16)

<z> ==> number of workers (defaullt ?)

Philipp Antar