mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 04:37:49 +08:00
37 lines
1.0 KiB
Go
37 lines
1.0 KiB
Go
// Copyright 2018 gf Author(https://github.com/gogf/gf). 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 (
|
|
"github.com/gogf/gf/g/os/gtimer"
|
|
"sync/atomic"
|
|
"time"
|
|
"unsafe"
|
|
)
|
|
|
|
// 缓存对象。
|
|
// 底层只有一个缓存对象,如果需要提高并发性能,可新增缓存对象无锁哈希表,用键名做固定分区。
|
|
type Cache struct {
|
|
*memCache
|
|
}
|
|
|
|
// Cache对象按照缓存键名首字母做了分组
|
|
func New(lruCap...int) *Cache {
|
|
c := &Cache {
|
|
memCache : newMemCache(lruCap...),
|
|
}
|
|
gtimer.AddSingleton(time.Second, c.syncEventAndClearExpired)
|
|
return c
|
|
}
|
|
|
|
// 清空缓存中的所有数据
|
|
func (c *Cache) Clear() {
|
|
// 使用原子操作替换缓存对象
|
|
old := atomic.SwapPointer((*unsafe.Pointer)(unsafe.Pointer(&c.memCache)), unsafe.Pointer(newMemCache()))
|
|
// 关闭旧的缓存对象
|
|
(*memCache)(old).Close()
|
|
} |