aboutsummaryrefslogtreecommitdiff
path: root/internal/caching/caches.go
diff options
context:
space:
mode:
authorTill <2353100+S7evinK@users.noreply.github.com>2022-05-06 15:33:34 +0200
committerGitHub <noreply@github.com>2022-05-06 15:33:34 +0200
commit6493c0c0f23bb930cc8a2ce071a66b7d4b5ec9eb (patch)
treead4beb518a4f25542b0dcebe7e8efc95220c337c /internal/caching/caches.go
parent507f63d0fc8158f200f3e29fd36e5f09c83e62db (diff)
Move LL cache (#2429)
Diffstat (limited to 'internal/caching/caches.go')
-rw-r--r--internal/caching/caches.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/caching/caches.go b/internal/caching/caches.go
index 722405de..173e47e5 100644
--- a/internal/caching/caches.go
+++ b/internal/caching/caches.go
@@ -1,6 +1,8 @@
package caching
-import "time"
+import (
+ "time"
+)
// Caches contains a set of references to caches. They may be
// different implementations as long as they satisfy the Cache
@@ -13,6 +15,7 @@ type Caches struct {
RoomInfos Cache // RoomInfoCache
FederationEvents Cache // FederationEventsCache
SpaceSummaryRooms Cache // SpaceSummaryRoomsCache
+ LazyLoading Cache // LazyLoadCache
}
// Cache is the interface that an implementation must satisfy.