在生产中维护宝石的最佳实践设置

发布于 2024-10-19 15:29:12 字数 221 浏览 2 评论 0原文

对于在生产环境中运行的 Rails 应用程序,关于 gem 管理的建议设置是什么? Bundler 可以很好地处理依赖关系解析、安装、更新等,但仍然依赖于在任何给定时间启动并运行的 gem 存储库,并且不会从存储库中提取(删除)任何所需的 gem。

有没有办法通过生产 gem 管理实现更多冗余(也许是 gem 存储库的本地镜像?),以便在 RubyGems 停机或删除所需的 gem 时一切都可以继续正常运行?

What is the recommended setup for a Rails application running in the production environment with regards to gem management? Bundler handles dependency resolution, installing, updating, etc. well, but still relies on the gem repository being up and running at any given time and any required gem not being pulled (removed) from the repository.

Is there any way to achieve more redundancy (a local mirror of the gem repository, maybe?) with production gem management, so everything can continue to function normally if RubyGems has downtime or a required gem is removed?

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

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

发布评论

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

评论(1

脱离于你 2024-10-26 15:29:12

命令“bundle package”怎么样:将应用程序所需的.gem 文件打包到vendor/cache 目录中。

How about the command "bundle package": Package the .gem files required by your application into the vendor/cache directory.

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