mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
78596a6756
Fixes #30144 Co-authored-by: dsotirakis <sotirakis.dim@gmail.com> Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com> Co-authored-by: Ida Furjesova <ida.furjesova@grafana.com> Co-authored-by: Jack Westbrook <jack.westbrook@gmail.com> Co-authored-by: Will Browne <wbrowne@users.noreply.github.com> Co-authored-by: Leon Sorokin <leeoniya@gmail.com> Co-authored-by: Andrej Ocenas <mr.ocenas@gmail.com> Co-authored-by: spinillos <selenepinillos@gmail.com> Co-authored-by: Karl Persson <kalle.persson@grafana.com> Co-authored-by: Leonard Gram <leo@xlson.com>
24 lines
473 B
Go
24 lines
473 B
Go
package localcache
|
|
|
|
import (
|
|
"time"
|
|
|
|
gocache "github.com/patrickmn/go-cache"
|
|
)
|
|
|
|
// CacheService cache any object in memory on the local instance.
|
|
type CacheService struct {
|
|
*gocache.Cache
|
|
}
|
|
|
|
func ProvideService() *CacheService {
|
|
return New(5*time.Minute, 10*time.Minute)
|
|
}
|
|
|
|
// New returns a new CacheService
|
|
func New(defaultExpiration, cleanupInterval time.Duration) *CacheService {
|
|
return &CacheService{
|
|
Cache: gocache.New(defaultExpiration, cleanupInterval),
|
|
}
|
|
}
|