codecamp

GoFrame 缓存管理-接口化设计

缓存组件采用了接口化设计,提供了​Adapter​接口,任何实现了​Adapter​接口的对象均可注册到缓存管理对象中,使得开发者可以对缓存管理对象进行灵活的自定义实现和扩展。

接口定义

Adapter​接口定义如下:

https://pkg.go.dev/github.com/gogf/gf/v2/os/gcache#Adapter

注册接口实现

通过该方法将实现的​adapter​应用到对应的​Cache​对象上:

// SetAdapter changes the adapter for this cache.
// Be very note that, this setting function is not concurrent-safe, which means you should not call
// this setting function concurrently in multiple goroutines.
func (c *Cache) SetAdapter(adapter Adapter)

获取接口实现

通过该方法获取当前注册的​adapter​接口实现对象上:

// GetAdapter returns the adapter that is set in current Cache.
func (c *Cache) GetAdapter() Adapter


GoFrame 缓存管理-基本介绍
GoFrame 缓存管理-内存缓存
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

GoFrame 核心组件

GoFrame 核心组件-数据库ORM

GoFrame 模块列表

GoFrame 模块列表-单元测试

GoFrame 模块列表-功能调试

GoFrame WEB服务开发

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }