Skip to content

cache

API

你可以在JS作用域内使用cache全局变量,它提供了一些缓存相关的方法;

js
put(key string, value interface{})
get(key string) interface{}
remove(key string)
putExpire(key string, value interface{}, expire int)

其中,putExpireexpire参数是一个整数,表示缓存的有效时间,单位是秒;

用法

js
cache.put('key', 'value')
var res = cache.get('key')
log.log(res) // value