package
Version:
v0.0.0-...-1cc9653
Opens a new window with list of versions in this module.
Published: Oct 21, 2021
License: GPL-3.0
Opens a new window with license information.
Imports: 5
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
func Get(key string) interface{}
Get memory本地内存缓存通过key读取一个缓存值
-- 注意读取后值非nil时需要显式转换成为设置时的类型 data.(Type)
GetWithSetter 使用设置器setter方式获取本地內存緩存
-- 若缓存存在则setter不会执行,若缓存不存在则setter执行并自动设置缓存
-- 内存缓存是原始类型直接保存在本地内存中,所以读取出来依然是原始类型,仅仅需要 data.(Type)显式转换一下即可
Set 设置一个memory本地内存缓存
-- 内存缓存是原始类型直接保存在本地内存中,所以读取出来依然是原始类型,仅仅需要 data.(Type)显式转换一下即可
Source Files
¶
Click to show internal directories.
Click to hide internal directories.