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.
14 lines
390 B
Django/Jinja
14 lines
390 B
Django/Jinja
# This file can be left empty
|
|
# The following standard parameters are generated automatically and are
|
|
# not required to be found in this file:
|
|
# - addons_path
|
|
# - connection parameters to the database
|
|
# - database name
|
|
# - 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
|