EFForg / org.eff.optimizedautocomplete

CiviCRM extension: Optimize the autocomplete search box mysql queries so they're more efficient on large databases
4 stars 9 forks source link

Optimized Autocomplete

Optimized Autocomplete is a CiviCRM extension. If you have a large database (over 500,000 contacts), you may have noticed that the autocomplete contact search box in top left of CiviCRM will never finish. This is because by default the MySQL queries that are being called to do the search are inefficient on large databases.

This extension fixes that problem by using a temporary table and making a series of efficient MySQL queries instead. However it also makes it so you can no longer customize the autocomplete search preferences. Only install this if you are having scaling issues related to the size of your database.

Requirements

Installation

Before this extension is stable (now):

After this extension is stable:

How to Use

Optimized Autocomplete searches for contacts based on sort_name and email.

If you have a contact with first_name "Micah" and last_name "Lee", the sort_name is "Lee, Micah". So if you're searching for that contact, start with the last name first, e.g. "lee, mi" should find this contact.

You can also just start typing an email address. If a contact has an email address "micah@eff.org", then you can search for "micah@e" and it should find it.

The the wildcard character is at the end of you search phrase. So searching for "micah@e" will find micah@eff.org, but searching for "icah@eff.org" never will. You're welcome to insert your own wildcards if you really want (you can search for "%icah@eff.org"), but it will significantly slow down your query.