2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00

DEV: Fix implementation for DiscourseRedis#exists.

This commit is contained in:
Guo Xiang Tan 2020-06-01 13:11:06 +08:00
parent 00aab49829
commit 389bdcf5ab
No known key found for this signature in database
GPG key ID: FBD110179AAC1F20
2 changed files with 5 additions and 4 deletions

View file

@ -208,13 +208,15 @@ class DiscourseRedis
end
end
# Remove when this has been upstreamed in https://github.com/redis/redis-rb/pull/911
# Implement our own because https://github.com/redis/redis-rb/issues/698 has stalled
def exists(*keys)
keys.map! { |a| "#{namespace}:#{a}" } if @namespace
DiscourseRedis.ignore_readonly do
@redis._client.call([:exists, *keys]) do |value|
value > 0
@redis.synchronize do |client|
client.call([:exists, *keys]) do |value|
value > 0
end
end
end
end