Kemal 使用处理程序中间件缓存响应
我正在尝试使用 Kemal 缓存一些 GET 请求。
class CachingHandler < Kemal::Handler
property cache : Hash(String, IO::Memory)
def initialize
@cache = Hash(String, IO::Memory).new
end
def call(context)
puts "Caching"
puts "Key: #{ context.request.resource }"
if output = @cache[context.request.resource]?
puts "Cache: true"
IO.copy output, context.response.output
else
puts "Cache: false"
puts "Cache: building"
context.response.output =
@cache[context.request.resource] = IO::Memory.new
# continue
puts "Cache: continue"
call_next context
end
end
end
但是在第一个请求中,浏览器总是在等待响应。并在第二个请求中发送“已关闭流(IO::Error)”错误。