# Functions
Del 删除一个本地内存缓存.
Get memory本地内存缓存通过key读取一个缓存值
-- 注意读取后值非nil时需要显式转换成为设置时的类型 data.(Type).
GetWithSetter 使用设置器setter方式获取本地內存緩存
-- 若缓存存在则setter不会执行,若缓存不存在则setter执行并自动设置缓存 -- 内存缓存是原始类型直接保存在本地内存中,所以读取出来依然是原始类型,仅仅需要 data.(Type)显式转换一下即可.
Pull Get then Del one local memory cache.
Set 设置一个memory本地内存缓存
-- 内存缓存是原始类型直接保存在本地内存中,所以读取出来依然是原始类型,仅仅需要 data.(Type)显式转换一下即可.