mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-03 14:39:00 +01:00
bb2380c254
* Allow specifying max age for caches * Evict cache entry if it's found to be stale when we call Get * Fix bugs
25 lines
758 B
Go
25 lines
758 B
Go
package caching
|
|
|
|
import "time"
|
|
|
|
// 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
|
|
SpaceSummaryRooms Cache // SpaceSummaryRoomsCache
|
|
}
|
|
|
|
// Cache is the interface that an implementation must satisfy.
|
|
type Cache interface {
|
|
Get(key string) (value interface{}, ok bool)
|
|
Set(key string, value interface{})
|
|
Unset(key string)
|
|
}
|
|
|
|
const CacheNoMaxAge = time.Duration(0)
|