Sha256: 40c771a51c4b3bf1ab77ebe68c4d193fad76abd237ee624118d6982b7bdcefe4

Contents?: true

Size: 1014 Bytes

Versions: 5

Compression:

Stored size: 1014 Bytes

Contents

class Redis
  class Store < self
    module Marshalling
      def set(key, value, options = nil)
        _marshal(value, options) { |value| super key, value, options }
      end

      def setnx(key, value, options = nil)
        _marshal(value, options) { |value| super key, value, options }
      end

      def get(key, options = nil)
        _unmarshal super(key), options
      end

      def mget(*keys)
        options = keys.flatten.pop if keys.flatten.last.is_a?(Hash)
        super(*keys).map do |result|
          _unmarshal result, options
        end
      end

      private
        def _marshal(val, options)
          yield marshal?(options) ? val : Marshal.dump(val)
        end

        def _unmarshal(val, options)
          unmarshal?(val, options) ? Marshal.load(val) : val
        end

        def marshal?(options)
          options && options[:raw]
        end

        def unmarshal?(result, options)
          result && result.size > 0 && !marshal?(options)
        end
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
redis-store-1.0.0.rc1 lib/redis/store/marshalling.rb
redis-store-1.0.0.beta5 lib/redis/store/marshalling.rb
redis-store-1.0.0.beta4 lib/redis/store/marshalling.rb
nono-redis-store-1.0.0 lib/redis/store/marshalling.rb
redis-store-1.0.0.beta3 lib/redis/store/marshalling.rb