TotalMemorySize 内存尺寸
()
| 409 | |
| 410 | // TotalMemorySize 内存尺寸 |
| 411 | func (this *MemoryStorage) TotalMemorySize() int64 { |
| 412 | return atomic.LoadInt64(&this.usedSize) |
| 413 | } |
| 414 | |
| 415 | // IgnoreKey 忽略某个Key,即不缓存某个Key |
| 416 | func (this *MemoryStorage) IgnoreKey(key string, maxSize int64) { |