在生产中维护宝石的最佳实践设置
对于在生产环境中运行的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
命令“bundle package”怎么样:将应用程序所需的.gem 文件打包到vendor/cache 目录中。
How about the command "bundle package": Package the .gem files required by your application into the vendor/cache directory.