revert hot fix codes, waiting for next release to fix

This commit is contained in:
John
2019-01-02 11:41:22 +08:00
parent adf06a2b0d
commit 7ad4f61564

View File

@ -79,7 +79,7 @@ func (c *memCache) getExpireSet(expire int64) (expireSet *gset.Set) {
c.expireSetMu.RLock()
expireSet, _ = c.expireSets[expire]
c.expireSetMu.RUnlock()
return
return nil
}
// 获取或者创建一个过期键名存放Set(由于是异步单线程执行因此不会出现创建set时的覆盖问题)