Why do I see multiple processes for postgres?
Why do I see multiple processes for postgres?
On Windows, session related backend processes always run as threads, and the background processes run as operating system processes. On Linux, the multi-process Postgres model is used by default, and you need to modify the configuration parameter threaded_execution
to enable the multi-threaded Postgres model.