Add web_fix_modules_load

This commit is contained in:
Simone Orsi
2022-10-04 18:38:01 +02:00
parent 795ef060fe
commit 119c67e976
14 changed files with 272 additions and 0 deletions

View File

@@ -0,0 +1 @@
* Simone Orsi <simone.orsi@camptocamp.com>

View File

@@ -0,0 +1,7 @@
Odoo loads translations and module info using their names.
When you have a lot of modules installed (eg: 500+)
this can lead to very big GET requests (more than 12k) which, in most of the cases,
will be blocked by the web server (eg: nginx) because they are too big.
This module tries to fix this by using modules' ids instead of names
reducing dramatically the size of such requests.