Commit b6c4e27a authored by reterVision's avatar reterVision

Adjust the action order in Put function.

parent 2933d1fe
......@@ -57,11 +57,11 @@ func (rc *RedisCache) Get(key string) interface{} {
// put cache to redis.
func (rc *RedisCache) Put(key string, val interface{}, timeout int64) error {
_, err := rc.do("HSET", rc.key, key, true)
_, err := rc.do("SET", key, val)
if err != nil {
return nil
}
_, err = rc.do("SET", key, val)
_, err = rc.do("HSET", rc.key, key, true)
if err != nil {
return nil
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment