Rails 永久存储自定义配置
我遇到以下情况:我的数据库中有一个应用程序配置,每个请求都需要该配置。由于性能问题,我不想在每个请求上查询此配置。
所以我想要的是在应用程序服务器(mongrel/webbrick/...)启动时查询数据并将其永久存储,直到应用程序服务器重新启动或停止。我怎样才能做到这一点?
感谢您的任何建议
PS:我在 Rails3 上
I got the following situation: I have an application configuration in my database which is needed on every request. I don't want to query this configuration on every request because of performance issues.
So what I want is to query the data when the application server (mongrel/webbrick/...) starts and store it permanently until the application server is rebooted or stopped. How could I achieve this?
Thanks for any advice
PS: I'm on Rails3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发出请求并将其存储在缓存中。
Make a request and store it in the cache.