Class: Arturo::FeatureCaching::Cache

Inherits:
Object
  • Object
show all
Defined in:
lib/arturo/feature_caching.rb

Overview

Quack like a Rails cache.

Instance Method Summary collapse

Constructor Details

#initializeCache

Returns a new instance of Cache.



106
107
108
# File 'lib/arturo/feature_caching.rb', line 106

def initialize
  @data = {} # of the form {key => [value, expires_at or nil]}
end

Instance Method Details

#clearObject



134
135
136
# File 'lib/arturo/feature_caching.rb', line 134

def clear
  @data.clear
end

#delete(name) ⇒ Object



119
120
121
# File 'lib/arturo/feature_caching.rb', line 119

def delete(name)
  @data.delete(name)
end

#read(name, options = nil) ⇒ Object



110
111
112
113
114
115
116
117
# File 'lib/arturo/feature_caching.rb', line 110

def read(name, options = nil)
  value, expires_at = *@data[name]
  if value && (expires_at.blank? || expires_at > Time.now)
    value
  else
    nil
  end
end

#write(name, value, options = nil) ⇒ Object



123
124
125
126
127
128
129
130
131
132
# File 'lib/arturo/feature_caching.rb', line 123

def write(name, value, options = nil)
  expires_at = if options && options.respond_to?(:[]) && options[:expires_in]
    Time.now + options.delete(:expires_in)
  else
    nil
  end
  value.freeze.tap do |val|
    @data[name] = [value, expires_at]
  end
end