4

假设我的 Rails 应用程序上的一条路径卡在了机架缓存中。有没有办法说:“/games/zelda”应该从机架缓存中删除/失效?

4

2 回答 2

4

假设

  1. 您的 rails 应用程序名为MyApp
  2. 您要清除的完整网址是http://www.myapp.com/games/zelda

步骤 1获取规范化密钥

mock_request = Rack::MockRequest.env_for('/games/zelda', {"SERVER_NAME"=>"www.myapp.com"})
key = Rack::Cache::Key.call(Rack::Cache::Request.new(mock_request))

步骤 2检索存储对象

metastore_uri = MyApp::Application.config.action_dispatch.rack_cache[:metastore]
entitystore_uri = MyApp::Application.config.action_dispatch.rack_cache[:entitystore]

metastore = Rack::Cache::Storage.instance.resolve_metastore_uri(metastore_uri)
entitystore = Rack::Cache::Storage.instance.resolve_entitystore_uri(entitystore_uri)

步骤 3检索元数据

stored_meta = metastore.read(key)

第 4 步清除每种压缩类型的实体存储

stored_meta.each do |sm|
  entitystore.purge(sm[1]["X-Content-Digest"])
end

步骤 5清除 Metastore

metastore.purge(key)

我希望这有帮助。

于 2016-03-18T23:37:55.537 回答
0

您可以从 Memcached 实例中删除一个键或所有键。不幸的是,不允许列出所有键。因此,您不能遍历所有键,而只删除要使其无效的键。

也就是说,我看到了两种选择:

  1. 删除 Memcached 中的所有键。
  2. 或者更改Memcached Storage配置的 URI 中的路径并重新缓存所有键。
于 2016-03-18T07:49:09.663 回答