i think in the app.yml
, there are two relevant settings
in the env
section,
## How many concurrent web requests are supported? Depends on memory and CPU cores.
## Will be set automatically by bootstrap based on detected CPUs, or you can override
UNICORN_WORKERS: 4
in the params
section,
## Set db_shared_buffers to a max of 25% of the total memory.
## will be set automatically by bootstrap based on detected RAM, or you can override
db_shared_buffers: "1GB"
## can improve sorting performance, but adds memory usage per-connection
#db_work_mem: "40MB"
## maximum upload size (default: 10m)
upload_size: 20m
i would be interested to understand the answer to your question in respect to these settings.