本文整理汇总了Golang中github.com/luxuan/go-memcached-server/protocol.McResponse.Values方法的典型用法代码示例。如果您正苦于以下问题:Golang McResponse.Values方法的具体用法?Golang McResponse.Values怎么用?Golang McResponse.Values使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/luxuan/go-memcached-server/protocol.McResponse
的用法示例。
在下文中一共展示了McResponse.Values方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: DefaultGet
func DefaultGet(req *protocol.McRequest, res *protocol.McResponse) error {
for _, key := range req.Keys {
value := dict[key]
// TODO missed
res.Values = append(res.Values, protocol.McValue{key, "0", value})
}
res.Response = "END"
return nil
}
示例2: BFGet
func (h *Handler) BFGet(req *protocol.McRequest, res *protocol.McResponse) error {
var b []byte
for _, key := range req.Keys {
if exist := h.Get(key); exist {
b = []byte("1")
} else {
b = []byte("0")
}
res.Values = append(res.Values, protocol.McValue{key, "0", b})
}
res.Response = "END"
return nil
}