Changes between Initial Version and Version 1 of Ticket #13871, comment 10


Ignore:
Timestamp:
Oct 20, 2018, 12:49:39 PM (6 years ago)
Author:
Aymeric Augustin

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13871, comment 10

    initial v1  
    1 Using "autocomplete_fields" brings complexity down from O(m * n) to O(n). It still makes n database queries, but these queries return only 1 row instead of m.
     1Using `autocomplete_fields` improves things slightly: it still makes the same number of database queries but these queries return only 1 row instead of the entire table.
Back to Top