Files
gf/os/gcache/gcache_cache.go

62 lines
1.8 KiB
Go
Raw Normal View History

2021-01-17 21:46:25 +08:00
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package gcache
import (
2020-09-26 20:47:29 +08:00
"github.com/gogf/gf/container/gvar"
2019-07-29 21:01:19 +08:00
"github.com/gogf/gf/os/gtimer"
2020-09-26 20:47:29 +08:00
"github.com/gogf/gf/util/gconv"
"time"
)
2019-06-10 21:23:49 +08:00
// Cache struct.
type Cache struct {
2020-09-26 20:47:29 +08:00
Adapter // Adapter for cache features.
}
2020-09-26 20:47:29 +08:00
// New creates and returns a new cache object using default memory adapter.
// Note that the LRU feature is only available using memory adapter.
2019-06-19 09:06:52 +08:00
func New(lruCap ...int) *Cache {
2020-09-26 20:47:29 +08:00
memAdapter := newAdapterMemory(lruCap...)
2019-06-19 09:06:52 +08:00
c := &Cache{
2020-09-26 20:47:29 +08:00
Adapter: memAdapter,
2019-06-19 09:06:52 +08:00
}
2020-09-26 20:47:29 +08:00
// Here may be a "timer leak" if adapter is manually changed from memory adapter.
// Do not worry about this, as adapter is less changed and it dose nothing if it's not used.
gtimer.AddSingleton(time.Second, memAdapter.syncEventAndClearExpired)
2019-06-19 09:06:52 +08:00
return c
}
2020-09-26 20:47:29 +08:00
// SetAdapter changes the adapter for this cache.
// Be very note that, this setting function is not concurrent-safe, which means you should not call
// this setting function concurrently in multiple goroutines.
func (c *Cache) SetAdapter(adapter Adapter) {
c.Adapter = adapter
}
// GetVar retrieves and returns the value of <key> as gvar.Var.
func (c *Cache) GetVar(key interface{}) (*gvar.Var, error) {
v, err := c.Get(key)
return gvar.New(v), err
2020-09-26 20:47:29 +08:00
}
// Removes deletes <keys> in the cache.
// Deprecated, use Remove instead.
func (c *Cache) Removes(keys []interface{}) error {
_, err := c.Remove(keys...)
return err
2020-09-26 20:47:29 +08:00
}
// KeyStrings returns all keys in the cache as string slice.
func (c *Cache) KeyStrings() ([]string, error) {
keys, err := c.Keys()
if err != nil {
return nil, err
}
return gconv.Strings(keys), nil
2019-06-19 09:06:52 +08:00
}