1234567891011121314151617181920212223242526272829303132 |
- # frozen_string_literal: true
- require_relative 'auto_tune'
- require 'etc'
- require 'sequel'
- # FWBM only... use the puma_auto_tune gem in production!
- num_workers, num_threads = auto_tune
- before_fork do
- Sequel::DATABASES.each(&:disconnect)
- end
- if RUBY_PLATFORM == 'java'
- num_threads = 512
- num_workers = 0
- end
- workers num_workers
- threads num_threads, num_threads
- # Use the `preload_app!` method when specifying a `workers` number.
- # This directive tells Puma to first boot the application and load code
- # before forking the application. This takes advantage of Copy On Write
- # process behavior so workers use less memory.
- #
- preload_app!
|