Patch at https://github.com/akaariai/django/tree/ordered_dict_on_need.
Together with splitted_clone branch this gives over 1.5x speedup to
model_save_existing.
There might be some cleaner way to implement the "initiate only on need"
for Query._aggregates and Query._extra. Ideas welcome.
Ill accept this directly as this seems like a good idea to do. This trades
code-cleanness for performance, but in this particular case I think it is
worth it.
--
Ticket URL: <https://code.djangoproject.com/ticket/20950>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
Comment (by akaariai):
I benchmarked the change that introduced OrderedDict (that is, commit
07876cf02b6db453ca0397c29c225668872fa96d). It seems the change introduces
around 15% slowdown in model_save_existing benchmark. Initializing an
empty OrderedDict is around 50% slower than Django's SortedDict was
(different algorithms, different tradeoffs).
Using Python's version of ordered dictionary is the correct thing to do. I
am pretty sure Python's OrderedDict will get optimised implementation some
day. But before that happens it seems like a good idea to avoid
initialization of empty OrderedDictionaries where possible.
--
Ticket URL: <https://code.djangoproject.com/ticket/20950#comment:1>
* status: new => closed
* resolution: => fixed
Comment:
In [changeset:"ff723d894d9272ea721d1996432ffc806c2b8180"]:
{{{
#!CommitTicketReference repository=""
revision="ff723d894d9272ea721d1996432ffc806c2b8180"
Fixed #20950 -- Instantiate OrderedDict() only when needed
The use of OrderedDict (even an empty one) was surprisingly slow. By
initializing OrderedDict only when needed it is possible to save
non-trivial amount of computing time (Model.save() is around 30% faster
for example).
This commit targetted sql.Query only, there are likely other places
which could use similar optimizations.
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/20950#comment:2>
Comment (by Anssi Kääriäinen <akaariai@…>):
In [changeset:"d64060a73650360dcabfdb4928a9e92d090925b1"]:
{{{
#!CommitTicketReference repository=""
revision="d64060a73650360dcabfdb4928a9e92d090925b1"
OrderedDict creation avoidance for .values() queries
Avoid accessing query.extra and query.aggregates directly for .values()
queries. Refs #20950.
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/20950#comment:3>