blob: e5914abc8162a6d4601cf6031d7845dffcb8585b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
require "rack/cache"
require "rack/cache/context"
require "active_support/cache"
module ActionDispatch
class RailsMetaStore < Rack::Cache::MetaStore
def self.resolve(uri)
new
end
# TODO: Finally deal with the RAILS_CACHE global
def initialize(store = RAILS_CACHE)
@store = store
end
def read(key)
@store.read(key) || []
end
def write(key, value)
@store.write(key, value)
end
def purge(key)
@store.delete(key)
nil
end
::Rack::Cache::MetaStore::RAILS = self
end
class RailsEntityStore < Rack::Cache::EntityStore
def self.resolve(uri)
new
end
def initialize(store = RAILS_CACHE)
@store = store
end
def exist?(key)
@store.exist?(key)
end
def open(key)
@store.read(key)
end
def read(key)
body = open(key)
body.join if body
end
def write(body)
buf = []
key, size = slurp(body) { |part| buf << part }
@store.write(key, buf)
[key, size]
end
def purge(key)
@store.delete(key)
end
::Rack::Cache::EntityStore::RAILS = self
end
end
|