Rails 中的开发和生产系统
开发环境和生产环境之间的 Rails 到底有什么区别? 当我在开发模式下开发应用程序时,如果我在产品上克隆我的开发环境,是否会遇到性能问题或其他问题?
What exactly is the difference in rails between dev and prod environments.
When I develop an application in dev mode, do I have peformance problems, or others if I clone my dev environment on prod?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
环境与 Rails 初始值设定项类似,以下是常见差异的简短列表:
/config/environments/*.rb
中找到每个文件/设置。有关可在环境配置中使用的设置的文档可以在此处找到:http://guides.rubyonrails。 org/configuring.html
Environments are similar to rails initializers, here's a short list of common differences:
/config/environments/*.rb
.Documentation on settings that can be used within the environment configurations can be found here: http://guides.rubyonrails.org/configuring.html
开发模式不会缓存您的代码,不会缓存 SQL,它会向您显示异常,包括您的代码、没有优化等。不建议这样分发它,即使您可以在 config/environments/development 下配置所有这些.rb
Dev mode won't cache your code, won't cache SQL, it will show you exceptions including your code, no optimizations, etc. Not recommended to distribute it like that, even though you can configure all those under config/environments/development.rb