Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 rails 3 应用程序,并且正在使用 copycopter 来管理翻译。我开始将缓存集成到我的应用程序中,但现在遇到了问题。由于 copycopter 是一个服务器-客户端应用程序,因此当您在服务器上更改翻译时,客户端会下载翻译。
我所有的页面都包含可翻译的字符串 I18n.t("some_key.something"),当这个翻译发生变化时,我怎样才能使缓存过期(更新的密钥是从 copycopter 服务器下载的)?在多页中使用翻译时的最佳做法是什么?
经过更多调查后,我发现了一个类似的问题,它的解决方案也适用于这种情况。
可以在这里找到解决方案:
如何使带有翻译的视图的缓存失效?