aboutsummaryrefslogtreecommitdiff
path: root/internal/caching/caches.go
diff options
context:
space:
mode:
authorkegsay <kegan@matrix.org>2022-03-01 16:32:48 +0000
committerGitHub <noreply@github.com>2022-03-01 16:32:48 +0000
commit352e63915f110cbe4907349a7e59f43f179657e6 (patch)
tree4d157f398c78ee0cfa3f597f9218cca01f2f4a6d /internal/caching/caches.go
parentae840590b643bd74786f3e8a869a8ea9e769995b (diff)
msc2946: add federation cache (#2238)
Diffstat (limited to 'internal/caching/caches.go')
-rw-r--r--internal/caching/caches.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/caching/caches.go b/internal/caching/caches.go
index e1642a66..39926d73 100644
--- a/internal/caching/caches.go
+++ b/internal/caching/caches.go
@@ -10,6 +10,7 @@ type Caches struct {
RoomServerRoomIDs Cache // RoomServerNIDsCache
RoomInfos Cache // RoomInfoCache
FederationEvents Cache // FederationEventsCache
+ SpaceSummaryRooms Cache // SpaceSummaryRoomsCache
}
// Cache is the interface that an implementation must satisfy.