mirror of
https://gitee.com/johng/gf.git
synced 2024-12-01 11:48:09 +08:00
改进gcache底层对象继承关系
This commit is contained in:
parent
42e6271749
commit
0d19e05fb4
@ -14,13 +14,13 @@ import (
|
||||
// 缓存对象。
|
||||
// 底层只有一个缓存对象,如果需要提高并发性能,可新增缓存对象无锁哈希表,用键名做固定分区。
|
||||
type Cache struct {
|
||||
*memCache // 底层缓存对象
|
||||
memCache
|
||||
}
|
||||
|
||||
// Cache对象按照缓存键名首字母做了分组
|
||||
func New() *Cache {
|
||||
return &Cache {
|
||||
memCache : newMemCache(),
|
||||
memCache : *newMemCache(),
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user