mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-06 00:49:48 +00:00
35 lines
756 B
Go
35 lines
756 B
Go
package cache
|
|
|
|
//go:generate mockery -name Cache -output mock -case=underscore
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/koding/cache"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
type Cache interface {
|
|
Get(string) (interface{}, error)
|
|
Set(string, interface{}) error
|
|
}
|
|
|
|
func Get(c context.Context, key string) (interface{}, error) {
|
|
return FromContext(c).Get(key)
|
|
}
|
|
|
|
func Set(c context.Context, key string, value interface{}) error {
|
|
return FromContext(c).Set(key, value)
|
|
}
|
|
|
|
// Default creates an in-memory cache with the default
|
|
// 30 minute expiration period.
|
|
func Default() Cache {
|
|
return NewTTL(time.Minute * 30)
|
|
}
|
|
|
|
// NewTTL returns an in-memory cache with the specified
|
|
// ttl expiration period.
|
|
func NewTTL(t time.Duration) Cache {
|
|
return cache.NewMemoryWithTTL(t)
|
|
}
|