cache setting groups
(key string, settings []model.SettingItem)
| 115 | |
| 116 | // cache setting groups |
| 117 | func (cm *CacheManager) SetSettingGroup(key string, settings []model.SettingItem) { |
| 118 | cm.settingCache.Set(key, settings) |
| 119 | } |
| 120 | |
| 121 | // cached setting group |
| 122 | func (cm *CacheManager) GetSettingGroup(key string) ([]model.SettingItem, bool) { |