forked from TrueCloudLab/frostfs-s3-gw
087d500c5f
Pull latest changes from NeoFS SDK Go library. Decrease redundant and unsafe usage of ID pointers. Use `EncodeToString` method in order to calculate protocol strings. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
64 lines
1.6 KiB
Go
64 lines
1.6 KiB
Go
package cache
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/bluele/gcache"
|
|
"github.com/nspcc-dev/neofs-sdk-go/object"
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
|
)
|
|
|
|
// ObjectsCache provides lru cache for objects.
|
|
type ObjectsCache struct {
|
|
cache gcache.Cache
|
|
}
|
|
|
|
const (
|
|
// DefaultObjectsCacheLifetime is a default lifetime of entries in objects' cache.
|
|
DefaultObjectsCacheLifetime = time.Minute * 5
|
|
// DefaultObjectsCacheSize is a default maximum number of entries in objects' cache.
|
|
DefaultObjectsCacheSize = 1e6
|
|
)
|
|
|
|
// DefaultObjectsConfig returns new default cache expiration values.
|
|
func DefaultObjectsConfig() *Config {
|
|
return &Config{Size: DefaultObjectsCacheSize, Lifetime: DefaultObjectsCacheLifetime}
|
|
}
|
|
|
|
// New creates an object of ObjectHeadersCache.
|
|
func New(config *Config) *ObjectsCache {
|
|
gc := gcache.New(config.Size).LRU().Expiration(config.Lifetime).Build()
|
|
return &ObjectsCache{cache: gc}
|
|
}
|
|
|
|
// Get returns a cached object.
|
|
func (o *ObjectsCache) Get(address oid.Address) *object.Object {
|
|
entry, err := o.cache.Get(address.EncodeToString())
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
|
|
result, ok := entry.(object.Object)
|
|
if !ok {
|
|
return nil
|
|
}
|
|
|
|
return &result
|
|
}
|
|
|
|
// Put puts an object to cache.
|
|
func (o *ObjectsCache) Put(obj object.Object) error {
|
|
cnrID, _ := obj.ContainerID()
|
|
objID, _ := obj.ID()
|
|
|
|
var addr oid.Address
|
|
addr.SetContainer(cnrID)
|
|
addr.SetObject(objID)
|
|
|
|
return o.cache.Set(addr.EncodeToString(), obj)
|
|
}
|
|
|
|
// Delete deletes an object from cache.
|
|
func (o *ObjectsCache) Delete(address oid.Address) bool {
|
|
return o.cache.Remove(address.EncodeToString())
|
|
}
|