frappe / crm

Well designed, open source CRM
https://frappe.io/crm
GNU Affero General Public License v3.0
275 stars 142 forks source link

Remove Contact & Organization store #115

Open shariquerik opened 5 months ago

cogk commented 2 months ago

The Contacts and Users stores don't scale very well indeed: with thousands of contacts the initial app load takes multiple seconds/minutes.

https://github.com/frappe/crm/blob/develop/crm/api/session.py

It turns out that calling frappe.get_all in a loop is indeed O(n²) in complexity haha :stuck_out_tongue_closed_eyes:

image