func (this *FunServantImpl) LcGet(ctx *rpc.Context, key string) (r []byte, miss *rpc.TCacheMissed, intError error) { result, ok := this.lc.Get(key) if !ok { miss = rpc.NewTCacheMissed() miss.Message = thrift.StringPtr("lcache missed: " + key) // optional } else { r = result.([]byte) } return }
func (this *FunServantImpl) McGet(ctx *rpc.Context, key string) (r []byte, miss *rpc.TCacheMissed, intError error) { profiler := this.profiler() it, err := this.mc.Get(key) if err == nil { // cache hit r = it.Value } else if err == memcache.ErrCacheMiss { // cache miss miss = rpc.NewTCacheMissed() miss.Message = thrift.StringPtr(err.Error()) // optional } else { intError = err log.Error(err) } profiler.do("mc.get", ctx, "{key^%s} {%s}", key, this.truncatedBytes(r)) return }