在Rails应用程序中使用redis-rb,以下内容不起作用:
irb> keys = $redis.keys("autocomplete*") => ["autocomplete_foo","autocomplete_bar","autocomplete_bat"] irb> $redis.del(keys) => 0
这工作正常:
irb> $redis.del("autocomplete_foo","autocomplete_bar") => 2
我错过了什么吗?来源只是:
# Delete a key. def del(*keys) synchronize do @client.call [:del,*keys] end end
它看起来像我应该工作通过它一个数组…?
解决方法
对splat操作符工作方式的一点编码探索:
def foo(*keys) puts keys.inspect end >> foo("hi","there") ["hi","there"] >> foo(["hi","there"]) [["hi","there"]] >> foo(*["hi","there"]) ["hi","there"]
所以传递一个常规数组会导致该数组被评估为一个单一的项目,这样您可以在方法中的数组内获得一个数组.如果您在调用方法时用*表示数组:
$redis.del(*keys)
这使得该方法知道解包它/不接受任何进一步的参数.所以应该解决你所遇到的问题!
只是为了进一步澄清,这有用:
>> foo("hello",*["hi","there"])
这会导致语法错误:
>> foo("hello","there"],"world")