Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
8669d107
Commit
8669d107
authored
Aug 01, 2010
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify key handling
parent
aa7d9cb8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
17 deletions
+11
-17
src/Products/ZCatalog/plan.py
src/Products/ZCatalog/plan.py
+11
-17
No files found.
src/Products/ZCatalog/plan.py
View file @
8669d107
...
...
@@ -77,6 +77,9 @@ del addCleanUp
def
make_key
(
catalog
,
query
):
if
not
query
:
return
None
indexes
=
catalog
.
indexes
valueindexes
=
determine_value_indexes
(
indexes
)
key
=
keys
=
query
.
keys
()
...
...
@@ -108,10 +111,10 @@ class CatalogPlan(object):
"""
def
__init__
(
self
,
catalog
,
query
=
None
,
threshold
=
0.1
):
self
.
init
()
self
.
init
_timer
()
self
.
catalog
=
catalog
self
.
query
=
query
self
.
_key
=
None
self
.
key
=
make_key
(
catalog
,
query
)
self
.
threshold
=
threshold
parent
=
aq_parent
(
catalog
)
...
...
@@ -122,7 +125,7 @@ class CatalogPlan(object):
path
=
tuple
(
parent
.
getPhysicalPath
())
self
.
cid
=
path
def
init
(
self
):
def
init
_timer
(
self
):
self
.
res
=
[]
self
.
start_time
=
None
self
.
interim
=
{}
...
...
@@ -138,7 +141,7 @@ class CatalogPlan(object):
def
benchmark
(
self
):
# holds the benchmark of each index
return
self
.
prioritymap
().
get
(
self
.
key
()
,
None
)
return
self
.
prioritymap
().
get
(
self
.
key
,
None
)
def
plan
(
self
):
benchmark
=
self
.
benchmark
()
...
...
@@ -151,11 +154,11 @@ class CatalogPlan(object):
return
[
i
[
1
]
for
i
in
ranking
]
def
start
(
self
):
self
.
init
()
self
.
init
_timer
()
self
.
start_time
=
time
.
time
()
benchmark
=
self
.
benchmark
()
if
benchmark
is
None
:
self
.
prioritymap
()[
self
.
key
()
]
=
{}
self
.
prioritymap
()[
self
.
key
]
=
{}
def
start_split
(
self
,
label
,
result
=
None
):
self
.
interim
[
label
]
=
(
time
.
time
(),
None
)
...
...
@@ -189,7 +192,7 @@ class CatalogPlan(object):
self
.
end_time
=
time
.
time
()
self
.
duration
=
self
.
end_time
-
self
.
start_time
key
=
self
.
key
()
key
=
self
.
key
benchmark
=
self
.
benchmark
()
prioritymap
=
self
.
prioritymap
()
prioritymap
[
key
]
=
benchmark
...
...
@@ -213,22 +216,13 @@ class CatalogPlan(object):
def
result
(
self
):
return
(
self
.
duration
,
tuple
(
self
.
res
))
def
key
(
self
):
if
not
self
.
_key
:
self
.
_key
=
make_key
(
self
.
catalog
,
self
.
query
)
return
self
.
_key
def
log
(
self
):
# result of stopwatch
res
=
self
.
result
()
if
res
[
0
]
<
self
.
threshold
:
return
# The key calculation takes a bit itself, we want to avoid that for
# any fast queries. This does mean that slow queries get the key
# calculation overhead added to their runtime.
key
=
self
.
key
()
key
=
self
.
key
reports_lock
.
acquire
()
try
:
if
self
.
cid
not
in
reports
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment