Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
11254bdf
Commit
11254bdf
authored
8 years ago
by
Erik Johnston
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #1644 from matrix-org/erikj/efficient_notif_counts
More efficient notif count queries
parents
302fbd21
1985860c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/storage/event_push_actions.py
+33
-8
33 additions, 8 deletions
synapse/storage/event_push_actions.py
synapse/storage/schema/delta/39/event_push_index.sql
+17
-0
17 additions, 0 deletions
synapse/storage/schema/delta/39/event_push_index.sql
with
50 additions
and
8 deletions
synapse/storage/event_push_actions.py
+
33
−
8
View file @
11254bdf
...
...
@@ -39,6 +39,14 @@ class EventPushActionsStore(SQLBaseStore):
columns
=
[
"
user_id
"
,
"
stream_ordering
"
],
)
self
.
register_background_index_update
(
"
event_push_actions_highlights_index
"
,
index_name
=
"
event_push_actions_highlights_index
"
,
table
=
"
event_push_actions
"
,
columns
=
[
"
user_id
"
,
"
room_id
"
,
"
topological_ordering
"
,
"
stream_ordering
"
],
where_clause
=
"
highlight=1
"
)
def
_set_push_actions_for_event_and_users_txn
(
self
,
txn
,
event
,
tuples
):
"""
Args:
...
...
@@ -88,8 +96,11 @@ class EventPushActionsStore(SQLBaseStore):
topological_ordering
,
stream_ordering
)
# First get number of notifications.
# We don't need to put a notif=1 clause as all rows always have
# notif=1
sql
=
(
"
SELECT
sum(notif), sum(highlight
)
"
"
SELECT
count(*
)
"
"
FROM event_push_actions ea
"
"
WHERE
"
"
user_id = ?
"
...
...
@@ -99,13 +110,27 @@ class EventPushActionsStore(SQLBaseStore):
txn
.
execute
(
sql
,
(
user_id
,
room_id
))
row
=
txn
.
fetchone
()
if
row
:
return
{
"
notify_count
"
:
row
[
0
]
or
0
,
"
highlight_count
"
:
row
[
1
]
or
0
,
}
else
:
return
{
"
notify_count
"
:
0
,
"
highlight_count
"
:
0
}
notify_count
=
row
[
0
]
if
row
else
0
# Now get the number of highlights
sql
=
(
"
SELECT count(*)
"
"
FROM event_push_actions ea
"
"
WHERE
"
"
highlight = 1
"
"
AND user_id = ?
"
"
AND room_id = ?
"
"
AND %s
"
)
%
(
lower_bound
(
token
,
self
.
database_engine
,
inclusive
=
False
),)
txn
.
execute
(
sql
,
(
user_id
,
room_id
))
row
=
txn
.
fetchone
()
highlight_count
=
row
[
0
]
if
row
else
0
return
{
"
notify_count
"
:
notify_count
,
"
highlight_count
"
:
highlight_count
,
}
ret
=
yield
self
.
runInteraction
(
"
get_unread_event_push_actions_by_room
"
,
...
...
This diff is collapsed.
Click to expand it.
synapse/storage/schema/delta/39/event_push_index.sql
0 → 100644
+
17
−
0
View file @
11254bdf
/* Copyright 2016 OpenMarket Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
INSERT
INTO
background_updates
(
update_name
,
progress_json
)
VALUES
(
'event_push_actions_highlights_index'
,
'{}'
);
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