I have been testing running Odoo in both threaded (workers = 0) and multiprocess mode (workers > 0). My environment has 4 cpus so I have set workers = 9 (# of cpu x 2 +1). The user interfaces is much less responsive in multiprocess mode. And some tasks even timeout in multiprocess mode (ie adding several modules at once). I have also tested using fewer workers (workers = 5) and the UI is a bit more responsive but still much slower than threaded mode.
The Odoo documentation says that multiprocess is meant for production use. Why would this mode be slower?