[CalendarServer-changes] [6479] CalendarServer/trunk/twistedcaldav/resource.py

source_changes at macosforge.org source_changes at macosforge.org
Thu Oct 28 07:27:54 PDT 2010


Revision: 6479
          http://trac.macosforge.org/projects/calendarserver/changeset/6479
Author:   cdaboo at apple.com
Date:     2010-10-28 07:27:52 -0700 (Thu, 28 Oct 2010)
Log Message:
-----------
Do not do depth infinity scans into regular collections (which include dropbox which is very expensive to scan right now).
This fixes a bad performance regeression when PUT'ing data.

Modified Paths:
--------------
    CalendarServer/trunk/twistedcaldav/resource.py

Modified: CalendarServer/trunk/twistedcaldav/resource.py
===================================================================
--- CalendarServer/trunk/twistedcaldav/resource.py	2010-10-28 01:49:29 UTC (rev 6478)
+++ CalendarServer/trunk/twistedcaldav/resource.py	2010-10-28 14:27:52 UTC (rev 6479)
@@ -986,9 +986,13 @@
                         continue
                 if child.isSpecialCollection(type):
                     callback(child, childpath)
-                elif child.isCollection():
-                    if depth == "infinity":
-                        yield child.findSpecialCollectionsFaster(type, depth, request, callback, privileges)                
+                    
+                # No more regular collections. If we leave this in then dropbox is scanned at depth:infinity
+                # and that is very painful as it requires scanning all calendar resources too. Eventually we need
+                # to fix drop box and probably re-enable this for the generic case.
+#                elif child.isCollection():
+#                    if depth == "infinity":
+#                        yield child.findSpecialCollectionsFaster(type, depth, request, callback, privileges)                
 
     findSpecialCollections = findSpecialCollectionsFaster
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20101028/168304d8/attachment.html>


More information about the calendarserver-changes mailing list