mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
71 lines
1.8 KiB
Go
71 lines
1.8 KiB
Go
// 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 (
|
|
"context"
|
|
|
|
"github.com/gogf/gf/v2/util/gconv"
|
|
)
|
|
|
|
// Cache struct.
|
|
type Cache struct {
|
|
localAdapter
|
|
}
|
|
|
|
// localAdapter is alias of Adapter, for embedded attribute purpose only.
|
|
type localAdapter = Adapter
|
|
|
|
// New creates and returns a new cache object using default memory adapter.
|
|
// Note that the LRU feature is only available using memory adapter.
|
|
func New(lruCap ...int) *Cache {
|
|
var adapter Adapter
|
|
if len(lruCap) == 0 {
|
|
adapter = NewAdapterMemory()
|
|
} else {
|
|
adapter = NewAdapterMemoryLru(lruCap[0])
|
|
}
|
|
c := &Cache{
|
|
localAdapter: adapter,
|
|
}
|
|
return c
|
|
}
|
|
|
|
// NewWithAdapter creates and returns a Cache object with given Adapter implements.
|
|
func NewWithAdapter(adapter Adapter) *Cache {
|
|
return &Cache{
|
|
localAdapter: adapter,
|
|
}
|
|
}
|
|
|
|
// 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.localAdapter = adapter
|
|
}
|
|
|
|
// GetAdapter returns the adapter that is set in current Cache.
|
|
func (c *Cache) GetAdapter() Adapter {
|
|
return c.localAdapter
|
|
}
|
|
|
|
// Removes deletes `keys` in the cache.
|
|
func (c *Cache) Removes(ctx context.Context, keys []interface{}) error {
|
|
_, err := c.Remove(ctx, keys...)
|
|
return err
|
|
}
|
|
|
|
// KeyStrings returns all keys in the cache as string slice.
|
|
func (c *Cache) KeyStrings(ctx context.Context) ([]string, error) {
|
|
keys, err := c.Keys(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return gconv.Strings(keys), nil
|
|
}
|