SleekXMPP/sleekxmpp/plugins/xep_0009
Vijay Pandurangan 6f3cc77bb5 This change stops sleekxmpp from spending huge amounts of time unnecessarily computing logging data that may never be used. This is a HUGE performance improvement; in some of my test runs, unnecessary string creation was accounting for > 60% of all CPU time.
Note that using % in a string will _always_ perform the sting substitutions, because the strings are constructed before the function is called. So log.debug('%s' % expensiveoperation()) will take about the same CPU time whether or not the logging level is DEBUG or INFO. if you use , no substitutions are performed unless the string is actually logged
2011-11-19 11:30:44 -08:00
..
stanza Fix the xep_0009 import (no more relatives) 2011-02-09 10:02:14 +08:00
__init__.py Introduced new XEP-0009 into develop. 2011-01-13 08:40:53 +01:00
binding.py XEP-0009 will likely be updated to use <base64 /> instead of <Base64 /> 2011-10-05 12:09:50 -04:00
remote.py This change stops sleekxmpp from spending huge amounts of time unnecessarily computing logging data that may never be used. This is a HUGE performance improvement; in some of my test runs, unnecessary string creation was accounting for > 60% of all CPU time. 2011-11-19 11:30:44 -08:00
rpc.py This change stops sleekxmpp from spending huge amounts of time unnecessarily computing logging data that may never be used. This is a HUGE performance improvement; in some of my test runs, unnecessary string creation was accounting for > 60% of all CPU time. 2011-11-19 11:30:44 -08:00