summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2024-03-14 13:53:25 +0000
committerGitHub <noreply@github.com>2024-03-14 13:53:25 +0000
commit1c1b0bfa778e32bf740469b0a86be55102bc01b4 (patch)
treeac1d6f68a0f40bb957d578fadcf903c90155db63
parentImprove lock performance when a lot of locks are waiting (#16840) (diff)
downloadsynapse-1c1b0bfa778e32bf740469b0a86be55102bc01b4.tar.xz
Add query to update local cache of a remote user's device list to docs (#16892)
-rw-r--r--changelog.d/16892.doc1
-rw-r--r--docs/usage/administration/useful_sql_for_admins.md9
2 files changed, 10 insertions, 0 deletions
diff --git a/changelog.d/16892.doc b/changelog.d/16892.doc
new file mode 100644
index 0000000000..dd82b49112
--- /dev/null
+++ b/changelog.d/16892.doc
@@ -0,0 +1 @@
+Add a query to force a refresh of a remote user's device list to the "Useful SQL for Admins" documentation page.
\ No newline at end of file
diff --git a/docs/usage/administration/useful_sql_for_admins.md b/docs/usage/administration/useful_sql_for_admins.md
index 9f2cc9b957..41755cd3b6 100644
--- a/docs/usage/administration/useful_sql_for_admins.md
+++ b/docs/usage/administration/useful_sql_for_admins.md
@@ -205,3 +205,12 @@ SELECT user_id, device_id, user_agent, TO_TIMESTAMP(last_seen / 1000) AS "last_s
   FROM devices
   WHERE last_seen < DATE_PART('epoch', NOW() - INTERVAL '3 month') * 1000;
 ```
+
+## Clear the cache of a remote user's device list
+
+Forces the resync of a remote user's device list - if you have somehow cached a bad state, and the remote server is
+will not send out a device list update.
+```sql
+INSERT INTO device_lists_remote_resync
+VALUES ('USER_ID', (EXTRACT(epoch FROM NOW()) * 1000)::BIGINT);
+```