You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by jo...@apache.org on 2014/02/27 17:18:26 UTC

[09/16] git commit: [#7224] time many more pymongo & ming methods

[#7224] time many more pymongo & ming methods


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/7ad8965e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/7ad8965e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/7ad8965e

Branch: refs/heads/cj/7210
Commit: 7ad8965e8bcff3246921e38bc0a3b2e34d50b324
Parents: 1d044d9
Author: Dave Brondsema <db...@slashdotmedia.com>
Authored: Wed Feb 26 16:48:20 2014 +0000
Committer: Dave Brondsema <db...@slashdotmedia.com>
Committed: Wed Feb 26 16:48:20 2014 +0000

----------------------------------------------------------------------
 Allura/allura/lib/custom_middleware.py | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/7ad8965e/Allura/allura/lib/custom_middleware.py
----------------------------------------------------------------------
diff --git a/Allura/allura/lib/custom_middleware.py b/Allura/allura/lib/custom_middleware.py
index 2a07e58..b6797e3 100644
--- a/Allura/allura/lib/custom_middleware.py
+++ b/Allura/allura/lib/custom_middleware.py
@@ -217,14 +217,19 @@ class AlluraTimerMiddleware(TimerMiddleware):
             Timer('markdown', markdown.Markdown, 'convert'),
             Timer('ming', ming.odm.odmsession.ODMCursor, 'next',  # FIXME: this may captures timings ok, but is misleading for counts
                   debug_each_call=False),
-            Timer('ming', ming.odm.odmsession.ODMSession, 'flush', 'find'),
+            Timer('ming', ming.odm.odmsession.ODMSession, 'flush',
+                  'find', 'find_and_modify', 'remove', 'update', 'update_if_not_modified',
+                  'aggregate', 'group', 'map_reduce', 'inline_map_reduce', 'distinct',
+                  ),
             Timer('ming', ming.schema.Document, 'validate',
                   debug_each_call=False),
             Timer('ming', ming.schema.FancySchemaItem, '_validate_required',
                   '_validate_fast_missing', '_validate_optional',
                   debug_each_call=False),
             Timer('mongo', pymongo.collection.Collection, 'count', 'find',
-                  'find_one'),
+                  'find_one', 'aggregate', 'group', 'map_reduce',
+                  'inline_map_reduce', 'find_and_modify',
+                  'insert', 'save', 'update', 'remove', 'drop'),
             Timer('mongo', pymongo.cursor.Cursor, 'count', 'distinct',
                   '_refresh'),
             # urlopen and socket io may or may not overlap partially