0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-09-28 13:58:58 +02:00
dendrite/internal/caching/caches.go

17 lines
469 B
Go
Raw Normal View History

2020-06-05 17:42:01 +02:00
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 // implements RoomVersionCache
ServerKeys Cache // implements ServerKeyCache
}
// 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 12:07:26 +02:00
Unset(key string)
2020-06-05 17:42:01 +02:00
}