blob: 70f380ba59922fe2d48c80dbe38de2bd8778f30d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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{})
}
|