mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
58 lines
1.4 KiB
Go
58 lines
1.4 KiB
Go
package fastcache
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/gob"
|
|
"reflect"
|
|
|
|
"github.com/zitadel/zitadel/internal/errors"
|
|
|
|
"github.com/VictoriaMetrics/fastcache"
|
|
)
|
|
|
|
type Fastcache struct {
|
|
cache *fastcache.Cache
|
|
}
|
|
|
|
func NewFastcache(config *Config) (*Fastcache, error) {
|
|
return &Fastcache{
|
|
cache: fastcache.New(config.MaxCacheSizeInByte),
|
|
}, nil
|
|
}
|
|
|
|
func (fc *Fastcache) Set(key string, object interface{}) error {
|
|
if key == "" || reflect.ValueOf(object).IsNil() {
|
|
return errors.ThrowInvalidArgument(nil, "FASTC-87dj3", "key or value should not be empty")
|
|
}
|
|
var b bytes.Buffer
|
|
enc := gob.NewEncoder(&b)
|
|
if err := enc.Encode(object); err != nil {
|
|
return errors.ThrowInvalidArgument(err, "FASTC-RUyxI", "unable to encode object")
|
|
}
|
|
fc.cache.Set([]byte(key), b.Bytes())
|
|
return nil
|
|
}
|
|
|
|
func (fc *Fastcache) Get(key string, ptrToObject interface{}) error {
|
|
if key == "" || reflect.ValueOf(ptrToObject).IsNil() {
|
|
return errors.ThrowInvalidArgument(nil, "FASTC-di8es", "key or value should not be empty")
|
|
}
|
|
data := fc.cache.Get(nil, []byte(key))
|
|
if len(data) == 0 {
|
|
return errors.ThrowNotFound(nil, "FASTC-xYzSm", "key not found")
|
|
}
|
|
|
|
b := bytes.NewBuffer(data)
|
|
dec := gob.NewDecoder(b)
|
|
|
|
return dec.Decode(ptrToObject)
|
|
}
|
|
|
|
func (fc *Fastcache) Delete(key string) error {
|
|
if key == "" {
|
|
return errors.ThrowInvalidArgument(nil, "FASTC-lod92", "key should not be empty")
|
|
}
|
|
fc.cache.Del([]byte(key))
|
|
return nil
|
|
}
|