# File lib/em-redis/redis_protocol.rb, line 228 def mset(*args, &blk) hsh = args.pop if Hash === args.last if hsh call_command(hsh.to_a.flatten.unshift(:mset), &blk) else call_command(args.unshift(:mset), &blk) end end