Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
01ccc9e6
Commit
01ccc9e6
authored
7 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Measure time it takes to calculate state group ID
parent
f879127a
No related branches found
Branches containing commit
Tags
v1.9.0rc1
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/state.py
+28
-27
28 additions, 27 deletions
synapse/state.py
with
28 additions
and
27 deletions
synapse/state.py
+
28
−
27
View file @
01ccc9e6
...
@@ -483,33 +483,34 @@ class StateResolutionHandler(object):
...
@@ -483,33 +483,34 @@ class StateResolutionHandler(object):
key
:
e_ids
.
pop
()
for
key
,
e_ids
in
state
.
iteritems
()
key
:
e_ids
.
pop
()
for
key
,
e_ids
in
state
.
iteritems
()
}
}
# if the new state matches any of the input state groups, we can
with
Measure
(
self
.
clock
,
"
state.create_group_ids
"
):
# use that state group again. Otherwise we will generate a state_id
# if the new state matches any of the input state groups, we can
# which will be used as a cache key for future resolutions, but
# use that state group again. Otherwise we will generate a state_id
# not get persisted.
# which will be used as a cache key for future resolutions, but
state_group
=
None
# not get persisted.
new_state_event_ids
=
frozenset
(
new_state
.
itervalues
())
state_group
=
None
for
sg
,
events
in
state_groups_ids
.
iteritems
():
new_state_event_ids
=
frozenset
(
new_state
.
itervalues
())
if
new_state_event_ids
==
frozenset
(
e_id
for
e_id
in
events
):
for
sg
,
events
in
state_groups_ids
.
iteritems
():
state_group
=
sg
if
new_state_event_ids
==
frozenset
(
e_id
for
e_id
in
events
):
break
state_group
=
sg
break
# TODO: We want to create a state group for this set of events, to
# increase cache hits, but we need to make sure that it doesn't
# TODO: We want to create a state group for this set of events, to
# end up as a prev_group without being added to the database
# increase cache hits, but we need to make sure that it doesn't
# end up as a prev_group without being added to the database
prev_group
=
None
delta_ids
=
None
prev_group
=
None
for
old_group
,
old_ids
in
state_groups_ids
.
iteritems
():
delta_ids
=
None
if
not
set
(
new_state
)
-
set
(
old_ids
):
for
old_group
,
old_ids
in
state_groups_ids
.
iteritems
():
n_delta_ids
=
{
if
not
set
(
new_state
)
-
set
(
old_ids
):
k
:
v
n_delta_ids
=
{
for
k
,
v
in
new_state
.
iteritems
()
k
:
v
if
old_ids
.
get
(
k
)
!=
v
for
k
,
v
in
new_state
.
iteritems
()
}
if
old_ids
.
get
(
k
)
!=
v
if
not
delta_ids
or
len
(
n_delta_ids
)
<
len
(
delta_ids
):
}
prev_group
=
old_group
if
not
delta_ids
or
len
(
n_delta_ids
)
<
len
(
delta_ids
):
delta_ids
=
n_delta_ids
prev_group
=
old_group
delta_ids
=
n_delta_ids
cache
=
_StateCacheEntry
(
cache
=
_StateCacheEntry
(
state
=
new_state
,
state
=
new_state
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment