# File lib/redis/store/serialization.rb, line 28
      def mset(*args)
        options = args.pop if args.length.odd?
        updates = []
        args.each_slice(2) do |(key, value)|
          updates << encode(key)
          _marshal(value, options) { |v| updates << encode(v) }
        end
        super(*updates)
      end