Adjust the action order in Put function.

This commit is contained in:
reterVision 2014-07-05 22:30:51 +08:00
parent 2933d1fedd
commit b6c4e27a75
1 changed files with 2 additions and 2 deletions

View File

@ -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
}