本文整理汇总了Golang中tools/cache.LRUCache.SetCas方法的典型用法代码示例。如果您正苦于以下问题:Golang LRUCache.SetCas方法的具体用法?Golang LRUCache.SetCas怎么用?Golang LRUCache.SetCas使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tools/cache.LRUCache
的用法示例。
在下文中一共展示了LRUCache.SetCas方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: get
// Implements get method
// Passed boolean param cas - defines of returning cas_unique
func (enum *Ascii_protocol_enum) get(storage *cache.LRUCache, cas bool) (string, error) {
var result = ""
for _, value := range enum.key {
item := storage.Get(value)
if item != nil {
data := tools.ExtractStoredData(item.Cacheable)
if data == nil {
continue
}
result += "VALUE " + value + " " + tools.IntToString(int64(item.Flags)) + " " + tools.IntToString(int64(len(data)))
if cas {
cas_id := tools.GenerateCasId()
storage.SetCas(value, cas_id)
result += " " + tools.IntToString(cas_id)
}
result += "\r\n"
result += string(data) + "\r\n"
}
}
return result + "END\r\n", nil
}