mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 09:12:45 +08:00
Use define_method instead of eval-ing a string
It avoids the need for escaping the interpolations.
This commit is contained in:
parent
c5e1dba31f
commit
f00853bee8
|
@ -25,12 +25,10 @@ class DiscourseRedis
|
|||
pttl rename renamenx rpop rpoplpush rpush rpushx sadd scard sdiff set setbit setex setnx setrange sinter
|
||||
sismember smembers sort spop srandmember srem strlen sunion ttl type watch zadd zcard zcount zincrby
|
||||
zrange zrangebyscore zrank zrem zremrangebyrank zremrangebyscore zrevrange zrevrangebyscore zrevrank zrangebyscore).each do |m|
|
||||
class_eval %{
|
||||
def #{m}(*args)
|
||||
args[0] = "\#\{DiscourseRedis.namespace\}:\#\{args[0]\}"
|
||||
@redis.#{m}(*args)
|
||||
end
|
||||
}
|
||||
define_method m do |*args|
|
||||
args[0] = "#{DiscourseRedis.namespace}:#{args[0]}"
|
||||
@redis.send(__method__, *args)
|
||||
end
|
||||
end
|
||||
|
||||
def self.namespace
|
||||
|
|
Loading…
Reference in New Issue
Block a user