SleekXMPP/sleekxmpp/xmlstream/handler
Vijay Pandurangan deb52ad350 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-20 03:39:05 +08:00
..
__init__.py Moved ClientXMPP to clientxmpp.py. 2010-10-06 14:20:32 -04:00
base.py Break reference cycle to fix potential memory leaks for callback handlers. 2011-10-08 17:31:30 -04:00
callback.py More attempts at fixing garbage collection. 2011-02-14 11:30:04 -05:00
waiter.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-20 03:39:05 +08:00
xmlcallback.py Updated the suite of handler classes with documentation. 2010-08-27 16:42:26 -04:00
xmlwaiter.py Updated the suite of handler classes with documentation. 2010-08-27 16:42:26 -04:00