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
Package registry
Container Registry
Model registry
Operate
Terraform modules
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
Timo Ley
synapse
Commits
62175a20
Commit
62175a20
authored
6 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Docs
parent
1bb35e3a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/tcp_replication.rst
+5
-0
5 additions, 0 deletions
docs/tcp_replication.rst
synapse/storage/_base.py
+3
-2
3 additions, 2 deletions
synapse/storage/_base.py
with
8 additions
and
2 deletions
docs/tcp_replication.rst
+
5
−
0
View file @
62175a20
...
@@ -240,3 +240,8 @@ However, there are times when a number of caches need to be invalidated at the
...
@@ -240,3 +240,8 @@ However, there are times when a number of caches need to be invalidated at the
same time with the same key. To reduce traffic we batch those invalidations into
same time with the same key. To reduce traffic we batch those invalidations into
a single poke by defining a special cache name that workers understand to mean
a single poke by defining a special cache name that workers understand to mean
to expand to invalidate the correct caches.
to expand to invalidate the correct caches.
Currently the special cache names are declared in ``synapse/storage/_base.py``
and are:
1. ``cs_cache_fake`` ─ invalidates caches that depend on the current state
This diff is collapsed.
Click to expand it.
synapse/storage/_base.py
+
3
−
2
View file @
62175a20
...
@@ -1201,7 +1201,7 @@ class SQLBaseStore(object):
...
@@ -1201,7 +1201,7 @@ class SQLBaseStore(object):
Args:
Args:
txn
txn
room_id (str): Room where state changed
room_id (str): Room where state changed
members_changed (
I
terable[str]): The user_ids of members that have changed
members_changed (
i
terable[str]): The user_ids of members that have changed
"""
"""
txn
.
call_after
(
self
.
_invalidate_state_caches
,
room_id
,
members_changed
)
txn
.
call_after
(
self
.
_invalidate_state_caches
,
room_id
,
members_changed
)
...
@@ -1216,7 +1216,8 @@ class SQLBaseStore(object):
...
@@ -1216,7 +1216,8 @@ class SQLBaseStore(object):
Args:
Args:
room_id (str): Room where state changed
room_id (str): Room where state changed
members_changed (set[str]): The user_ids of members that have changed
members_changed (iterable[str]): The user_ids of members that have
changed
"""
"""
for
member
in
members_changed
:
for
member
in
members_changed
:
self
.
get_rooms_for_user_with_stream_ordering
.
invalidate
((
member
,))
self
.
get_rooms_for_user_with_stream_ordering
.
invalidate
((
member
,))
...
...
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