如何缓存 feedzirra heroku
知道如何在 heroku 上缓存 feedzirra rss 吗?
any idea how to cache feedzirra rss on heroku ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
知道如何在 heroku 上缓存 feedzirra rss 吗?
any idea how to cache feedzirra rss on heroku ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
如果您在 cedar 堆栈上运行,您可以访问磁盘并可以在那里缓存,但是如果您的应用程序重新启动并且在每次部署时(这可能是也可能不是需要的,具体取决于您的设置),您的缓存将被破坏。如果您运行多个测功机,这也可能意味着您最终会在每个测功机上获得不同的缓存。
另一种选择是将结果自己存储到某个共享的持久性中。这可以是免费数据库选项之一、redis 或 memcache。检查 https://addons.heroku.com/ 以查看可用的列表。
If you're running on the cedar stack you have access to the disk and can cache there, but your cache will be destroyed if your app is restarted and on each deployment (that may or may not be desirable depending on your setup). If you're running more than one dyno, it may also mean you end up with difference caches on each dyno.
The other alternative is to store the results yourself into some shared persistance. That can be one of the free database options, redis, or memcache. Check https://addons.heroku.com/ to see a list of the ones that are available.