以下是从Redis获取价值的示例代码段。我正在移植3个redis命令并获取值。这里的问题是“缺少毫秒”。 redis管道所用的时间明显较短(小于5ms),但执行Get Operation所需的总时间超过10ms。不确定哪个操作花费时间,因为我测量了len(字节)和时间,因此解组不是问题。任何帮助深表感谢。
请求/秒= 300,在具有强大的25GB redis实例的3个AWS大型实例上运行。使用10个默认连接。
func Get(params...) <-chan CacheResult {
start := time.Now()
var res CacheResult
defer func() {
resCh <- res
}()
type timers struct {
total time.Duration
pipeline time.Duration
unmarshal time.Duration
}
t := timers{}
startPipeTime := time.Now()
// pipe line commands
pipe := c.client.Pipeline()
// 3 commands pipelined (HGET, HEGT, GET)
if _, res.Err = pipe.Exec(); res.Err != nil && res.Err != redis.Nil {
return resCh
}
sinceStartPipeTime := time.Since(startPipeTime)
// get query values like below for HGET & GET
if val, res.Err = cachedValue.Bytes(); res.Err != nil {
return resCh
}
// Unmarshal the query value
startUnmarshalTime := time.Now()
var cv common.CacheValue
if res.Err = json.Unmarshal(val, &cv); res.Err != nil {
return resCh
}
sinceStartUnmarshalTime := time.Since(startUnmarshalTime)
t.unmarshal = sinceStartUnmarshalTime
endTime := time.Since(start)
xlog.Infof("Timings total:%s, "+
"pipeline(redis):%s, unmarshaling(%vB):%s", t.total, t.pipeline, len(val), t.unmarshal)
return resCh
}
答案 0 :(得分:1)
执行redis命令的时间包括:
在正常操作中,(2)需要最长时间。