Method: Rack::Cache::EntityStore::Disk#purge

Defined in:
lib/rack/cache/entitystore.rb

#purge(key) ⇒ Object



140
141
142
143
144
145
# File 'lib/rack/cache/entitystore.rb', line 140

def purge(key)
  File.unlink body_path(key)
  nil
rescue Errno::ENOENT
  nil
end