dendrite/internal/caching/caches.go

26 lines
758 B
Go
Raw Normal View History

2020-06-05 10:42:01 -05:00
package caching
import "time"
2020-06-05 10:42:01 -05:00
// Caches contains a set of references to caches. They may be
// different implementations as long as they satisfy the Cache
// interface.
type Caches struct {
RoomVersions Cache // RoomVersionCache
ServerKeys Cache // ServerKeyCache
RoomServerRoomNIDs Cache // RoomServerNIDsCache
RoomServerRoomIDs Cache // RoomServerNIDsCache
RoomInfos Cache // RoomInfoCache
FederationEvents Cache // FederationEventsCache
2022-03-01 10:32:48 -06:00
SpaceSummaryRooms Cache // SpaceSummaryRoomsCache
2020-06-05 10:42:01 -05:00
}
// Cache is the interface that an implementation must satisfy.
type Cache interface {
Get(key string) (value interface{}, ok bool)
Set(key string, value interface{})
2020-06-12 05:07:26 -05:00
Unset(key string)
2020-06-05 10:42:01 -05:00
}
const CacheNoMaxAge = time.Duration(0)