disable odoo memory limit by default

by default, odoo limits the available memory to 2560 MiB, which can
cause MemoryError exceptions, especially when dealing with high amounts
of records. disable this limit by default.
This commit is contained in:
hugues de keyzer 2025-05-02 16:37:29 +02:00
parent 42bf4f4379
commit 32cde3f0e7
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,2 @@
Disable default Odoo memory limit (of 2560 MiB) by default.
This can be adjusted in the `odoo.conf` file for each version.

View File

@ -7,3 +7,7 @@
# - http or xml port
# - etc.
# Only non standard or special options should be specified here.
[options]
# Disable default memory limit of 2560 MiB
limit_memory_hard = 0