mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-18 07:40:53 +01:00
5d65a879a5
* Cache federation sender events * Store in the correct cache * Update federation event cache * Fix Unset * Give EDUs same caching treatment as PDUs * Make federationsender_cache_size configurable * Default caches configuration * Fix unit tests * Revert "Fix unit tests" This reverts commit24eb5d2252
. * Revert "Default caches configuration" This reverts commit464ecd1e64
. * Revert "Make federationsender_cache_size configurable" This reverts commit4631f53241
.
21 lines
741 B
Go
21 lines
741 B
Go
package caching
|
|
|
|
// 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
|
|
RoomServerStateKeyNIDs Cache // RoomServerNIDsCache
|
|
RoomServerEventTypeNIDs Cache // RoomServerNIDsCache
|
|
RoomServerRoomNIDs Cache // RoomServerNIDsCache
|
|
RoomServerRoomIDs Cache // RoomServerNIDsCache
|
|
FederationEvents Cache // FederationEventsCache
|
|
}
|
|
|
|
// 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)
|
|
}
|