b6c4e27a by reterVision

Adjust the action order in Put function.

1 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
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!