当前位置:  开发笔记 > 数据库 > 正文

Rails每请求哈希?

如何解决《Rails每请求哈希?》经验,为你挑选了2个好方法。



1> Alex Lang..:

还有request_store gem.从文档:

将此行添加到应用程序的Gemfile:

gem 'request_store'

并使用此代码存储和检索数据(仅限于请求):

# Set
RequestStore.store[:foo] = 0

# Get
RequestStore.store[:foo]



2> cwninja..:

尝试PerRequestCache。我从SQL查询缓存中窃取了设计。

使用以下命令进行配置config/environment.rb

config.middleware.use PerRequestCache

然后将其用于:

PerRequestCache.fetch(:foo_cache){ some_expensive_foo }

推荐阅读
mobiledu2402851377
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有