缓存组件采用了接口化设计,提供了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
备案信息: 粤ICP备15087711号-2
Copyright © 2008-2024 啊嘎哇在线工具箱 All Rights.
本站所有资料来源于网络,版权归原作者所有,仅作学习交流使用,如不慎侵犯了您的权利,请联系我们。