Symfony:在组件操作中设置 sf_cache_key
是否可以在组件操作中设置 sf_cache_key ? 通常它是在组件调用中完成的:
include_component('default', 'navi', array('sf_cache_key' => 'my_cache_key'));
但我需要从“navi”操作中生成它。
参考: 带有组件的模板的上下文缓存
我通过生成解决了这个问题单独过滤器中的缓存键并将其保存到 sfConfig:
include_component('default', 'navi', array('sf_cache_key' => sfConfig::get('my_cache_key')));
Is it possible to set the sf_cache_key in the components action?
Normally it's done in the component call:
include_component('default', 'navi', array('sf_cache_key' => 'my_cache_key'));
But I need to generate it out of the "navi"-action.
Ref: contextual caching of templates with components
I solved this problem by generating the cache key in seperate filter and save it to sfConfig:
include_component('default', 'navi', array('sf_cache_key' => sfConfig::get('my_cache_key')));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当第二次调用该组件时,其结果已在缓存中。组件的代码不会被第二次调用。这就是缓存的整个想法。在需要缓存的代码中生成缓存密钥没有抓住重点。
When the component is called second time its result is already in cache. Component's code is not called second time. It's the whole idea of caching. Generating cache key inside the code which needs to be cached misses the point.