diff --git a/changelog.d/16241.misc b/changelog.d/16241.misc
new file mode 100644
index 0000000000000000000000000000000000000000..0fc5f34c5ce1835f1be1251b500c25cd356e3e7f
--- /dev/null
+++ b/changelog.d/16241.misc
@@ -0,0 +1 @@
+Cache device resync requests over replication.
diff --git a/synapse/replication/http/devices.py b/synapse/replication/http/devices.py
index 73f3de364205f3e9ad5b58e85b543c462fa4b264..209833d287538282e4afad49ed45d8b33c113a1a 100644
--- a/synapse/replication/http/devices.py
+++ b/synapse/replication/http/devices.py
@@ -62,7 +62,7 @@ class ReplicationMultiUserDevicesResyncRestServlet(ReplicationEndpoint):
 
     NAME = "multi_user_device_resync"
     PATH_ARGS = ()
-    CACHE = False
+    CACHE = True
 
     def __init__(self, hs: "HomeServer"):
         super().__init__(hs)