-
- Downloads
[MERGE][REF] mail, various: optimize implementation of follower subscription
This merge replaces followers subscription code in order to be optimized and perform less queries. This improvement is done in several steps : * mail followers model has new low-level and optimized methods to compute followers to create or update. It uses SQL queries to fetch data in a single request; * mail thread message_subscribe method is rewritten to use this new method. Its API is also simplified and message_subscribe_user is removed to simplify the whole subscription API; * auto subscription is also rewritten. Fetching subtype data about parent / child like project / task is done in a single query that prepares data. It then uses new method to create followers; Various addons are updated because of message_subscribe or auto subscription change. Functionally behavior should stay the same as purpose is to be equivalent in term of functional coverage. Performance counters show this optimized code works well when dealing with large set of followers to subscribe or update. Most tests perform better of a few queries. Most complex ones involving (auto) subscription of several followers perform way better. About 30% of query are saved in the three top tests, aka between 80 and 90 queries with auto subscription of 10 followers. On overall community runbot we have a gain of about 11K queries. As Odoo data has few followers impact on runbot is probably less interesting than impact on real-life use case. Thanks to @rco-odoo for reviewing, and cheers !
No related branches found
No related tags found
Showing
- addons/calendar/models/calendar.py 7 additions, 6 deletionsaddons/calendar/models/calendar.py
- addons/crm/tests/test_new_lead_notification.py 1 addition, 2 deletionsaddons/crm/tests/test_new_lead_notification.py
- addons/hr/models/hr.py 2 additions, 2 deletionsaddons/hr/models/hr.py
- addons/hr_expense/models/hr_expense.py 8 additions, 43 deletionsaddons/hr_expense/models/hr_expense.py
- addons/hr_holidays/models/hr_leave.py 1 addition, 1 deletionaddons/hr_holidays/models/hr_leave.py
- addons/hr_holidays/models/hr_leave_allocation.py 1 addition, 1 deletionaddons/hr_holidays/models/hr_leave_allocation.py
- addons/hr_maintenance/models/equipment.py 12 additions, 12 deletionsaddons/hr_maintenance/models/equipment.py
- addons/mail/models/ir_actions.py 1 addition, 1 deletionaddons/mail/models/ir_actions.py
- addons/mail/models/mail_followers.py 174 additions, 77 deletionsaddons/mail/models/mail_followers.py
- addons/mail/models/mail_message_subtype.py 33 additions, 10 deletionsaddons/mail/models/mail_message_subtype.py
- addons/mail/models/mail_thread.py 147 additions, 140 deletionsaddons/mail/models/mail_thread.py
- addons/maintenance/models/maintenance.py 4 additions, 4 deletionsaddons/maintenance/models/maintenance.py
- addons/project/models/project.py 7 additions, 9 deletionsaddons/project/models/project.py
- addons/project/tests/test_access_rights.py 2 additions, 2 deletionsaddons/project/tests/test_access_rights.py
- addons/project/tests/test_portal.py 5 additions, 5 deletionsaddons/project/tests/test_portal.py
- addons/test_mail/tests/test_mail_followers.py 3 additions, 3 deletionsaddons/test_mail/tests/test_mail_followers.py
- addons/test_mail/tests/test_message_compose.py 2 additions, 2 deletionsaddons/test_mail/tests/test_message_compose.py
- addons/test_mail/tests/test_performance.py 26 additions, 28 deletionsaddons/test_mail/tests/test_performance.py
- addons/website_event_track/controllers/main.py 1 addition, 1 deletionaddons/website_event_track/controllers/main.py
- addons/website_slides/models/slides.py 1 addition, 1 deletionaddons/website_slides/models/slides.py
Loading
Please register or sign in to comment