Allow DistributedCache#delete to not publish changes.

This commit is contained in:
Guo Xiang Tan
2017-10-20 22:35:47 +08:00
parent 13b2bf52c9
commit 7673684d91
2 changed files with 3 additions and 3 deletions

View File

@ -128,9 +128,9 @@ class DistributedCache
hash[k]
end
def delete(k)
def delete(k, publish: true)
k = k.to_s if Symbol === k
@manager.delete(self, k)
@manager.delete(self, k) if publish
hash.delete(k)
end