mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
[ADD] product_attribute_lazy: performance module for product attribute template rel
This commit is contained in:
29
product_attribute_lazy/__manifest__.py
Normal file
29
product_attribute_lazy/__manifest__.py
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
'name': 'Product Attribute Lazy',
|
||||
'author': 'Hibou Corp.',
|
||||
'version': '16.0.1.0.0',
|
||||
'category': 'Product',
|
||||
'sequence': 95,
|
||||
'summary': 'Performance module to change behavior of attribute-product-template relationship.',
|
||||
'description': """
|
||||
Performance module to change behavior of attribute-product-template relationship.
|
||||
|
||||
Adds scheduled action to reindex all attributes.
|
||||
|
||||
Adds scheduled action that will kill queries to this table,
|
||||
you can deactive if you're not having issues with long running table queries.
|
||||
|
||||
By default, a new pure SQL version of the index is created. If you would like to use the slower ORM
|
||||
computation, set system config parameter `product_attribute_lazy.indexer_use_sql` to '0'.
|
||||
""",
|
||||
'website': 'https://hibou.io/',
|
||||
'depends': [
|
||||
'product',
|
||||
],
|
||||
'data': [
|
||||
'data/product_data.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'application': False,
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Reference in New Issue
Block a user