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
9517f4da
Commit
9517f4da
authored
10 years ago
by
Erik Johnston
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' of github.com:matrix-org/synapse into store_rearrangement
parents
dc0c989e
ceb61daa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
synapse/storage/_base.py
+27
-13
27 additions, 13 deletions
synapse/storage/_base.py
synapse/storage/events.py
+1
-0
1 addition, 0 deletions
synapse/storage/events.py
synapse/storage/stream.py
+2
-1
2 additions, 1 deletion
synapse/storage/stream.py
with
30 additions
and
14 deletions
synapse/storage/_base.py
+
27
−
13
View file @
9517f4da
...
...
@@ -54,13 +54,12 @@ cache_counter = metrics.register_cache(
# TODO(paul):
# * more generic key management
# * consider other eviction strategies - LRU?
def
cached
(
max_entries
=
1000
):
def
cached
(
max_entries
=
1000
,
num_args
=
1
):
"""
A method decorator that applies a memoizing cache around the function.
The function is presumed to take
one additional
argument, which
is
used
as
the key for the cache.
Cache h
its are served directly from the cache;
The function is presumed to take
zero or more
argument
s
, which
are
used
in
a tuple as
the key for the cache.
H
its are served directly from the cache;
misses use the function body to generate the value.
The wrapped function has an additional member, a callable called
...
...
@@ -76,26 +75,41 @@ def cached(max_entries=1000):
caches_by_name
[
name
]
=
cache
def
prefill
(
key
,
value
):
def
prefill
(
*
args
):
# because I can't *keyargs, value
keyargs
=
args
[:
-
1
]
value
=
args
[
-
1
]
if
len
(
keyargs
)
!=
num_args
:
raise
ValueError
(
"
Expected a call to have %d arguments
"
,
num_args
)
while
len
(
cache
)
>
max_entries
:
cache
.
popitem
(
last
=
False
)
cache
[
key
]
=
value
cache
[
key
args
]
=
value
@functools.wraps
(
orig
)
@defer.inlineCallbacks
def
wrapped
(
self
,
key
):
if
key
in
cache
:
def
wrapped
(
self
,
*
keyargs
):
if
len
(
keyargs
)
!=
num_args
:
raise
ValueError
(
"
Expected a call to have %d arguments
"
,
num_args
)
if
keyargs
in
cache
:
cache_counter
.
inc_hits
(
name
)
defer
.
returnValue
(
cache
[
key
])
defer
.
returnValue
(
cache
[
key
args
])
cache_counter
.
inc_misses
(
name
)
ret
=
yield
orig
(
self
,
key
)
prefill
(
key
,
ret
)
ret
=
yield
orig
(
self
,
*
keyargs
)
prefill_args
=
keyargs
+
(
ret
,)
prefill
(
*
prefill_args
)
defer
.
returnValue
(
ret
)
def
invalidate
(
key
):
cache
.
pop
(
key
,
None
)
def
invalidate
(
*
keyargs
):
if
len
(
keyargs
)
!=
num_args
:
raise
ValueError
(
"
Expected a call to have %d arguments
"
,
num_args
)
cache
.
pop
(
keyargs
,
None
)
wrapped
.
invalidate
=
invalidate
wrapped
.
prefill
=
prefill
...
...
This diff is collapsed.
Click to expand it.
synapse/storage/events.py
+
1
−
0
View file @
9517f4da
...
...
@@ -52,6 +52,7 @@ class EventsStore(SQLBaseStore):
is_new_state
=
is_new_state
,
current_state
=
current_state
,
)
self
.
get_room_events_max_id
.
invalidate
()
except
_RollbackButIsFineException
:
pass
...
...
This diff is collapsed.
Click to expand it.
synapse/storage/stream.py
+
2
−
1
View file @
9517f4da
...
...
@@ -35,7 +35,7 @@ what sort order was used:
from
twisted.internet
import
defer
from
._base
import
SQLBaseStore
from
._base
import
SQLBaseStore
,
cached
from
synapse.api.constants
import
EventTypes
from
synapse.api.errors
import
SynapseError
from
synapse.util.logutils
import
log_function
...
...
@@ -413,6 +413,7 @@ class StreamStore(SQLBaseStore):
"
get_recent_events_for_room
"
,
get_recent_events_for_room_txn
)
@cached
(
num_args
=
0
)
def
get_room_events_max_id
(
self
):
return
self
.
runInteraction
(
"
get_room_events_max_id
"
,
...
...
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