在 Heroku 上缓存动态生成的图像

发布于 2024-11-29 10:43:17 字数 356 浏览 0 评论 0原文

对于项目列表视图,我们必须为每个条目动态生成(使用 RMagick/ImageMagick)图标图像。然后,该图标将在应用程序中重复使用。因此我们想省略再次生成它,因此我们应该缓存图像。

啊,对了,我们的应用程序在 Heroku 上运行。

省略重新生成图标的最佳方法是什么?我想到了一些策略:

  • 使用 Memcache 进行缓存?
  • 将文件(并让 Heroku/Varnish/Nginx)写入工作?
  • 使用像 Jammit 这样的 gem 存储到 S3?

For a list view of items, we have to dynamically generate (using RMagick/ImageMagick) icon images for every entry. This icon is then reused within the app. We thus want to omit generating it again, hence we should cache the image.

Ah right, our app runs on Heroku.

What is the best way to omit regenerating the icon? Some strategies come to mind:

  • Caching with Memcache?
  • Write file (and let Heroku/Varnish/Nginx) to the work?
  • Use a gem like Jammit to store to S3?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不知所踪 2024-12-06 10:43:17

http://devcenter.heroku.com/articles/caching-strategies

最好的选择可能是memcache 添加并使用片段缓存。可能低级缓存作为另一种选择。

http://devcenter.heroku.com/articles/caching-strategies

Best bet is probably memcache add on and to use fragment caching. Possibly low level caching as another alternative.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文