require File.dirname(__FILE__) + '/base_object' class Redis # # Class representing a simple value. You can use standard Ruby operations on it. # class Value < BaseObject require 'redis/helpers/core_commands' include Redis::Helpers::CoreCommands attr_reader :key, :options def initialize(key, *args) super(key, *args) redis.setnx(key, marshal(@options[:default])) if !@options[:default].nil? end def value=(val) allow_expiration do if val.nil? delete else redis.set key, marshal(val) end end end alias_method :set, :value= def value unmarshal redis.get(key) end alias_method :get, :value def inspect "#" end def ==(other); value == other end def nil?; value.nil? end def as_json(*args); value.as_json *args end def to_json(*args); value.to_json *args end def method_missing(*args) self.value.send *args end end end