Rails 中的开发和生产系统

发布于 2024-08-29 22:14:39 字数 82 浏览 12 评论 0原文

开发环境和生产环境之间的 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 技术交流群。

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

发布评论

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

评论(2

不乱于心 2024-09-05 22:14:39

环境与 Rails 初始值设定项类似,以下是常见差异的简短列表:

  1. 开发模式加载开发环境,生产模式加载生产环境。您可以在 /config/environments/*.rb 中找到每个文件/设置。
  2. 开发环境通常设置为显示渲染信息、系统信息和RJS 错误。
  3. 开发环境通常会禁用缓存。
  4. 我不确定这是否仍然成立,但众所周知,rails 开发环境存在内存泄漏问题,并且不应该在具有生产软件的计算机上运行的应用程序上使用。

有关可在环境配置中使用的设置的文档可以在此处找到:http://guides.rubyonrails。 org/configuring.html

Environments are similar to rails initializers, here's a short list of common differences:

  1. Dev mode loads the development environment, production loads the production environment. You can find the files/settings for each in /config/environments/*.rb.
  2. The development environment is usually set to display rendering information, system information, and RJS errors.
  3. The development environment will usually have caching disabled.
  4. I'm not sure if this still holds true, but the rails development environment has been known to have issues with memory leaks and should never be used on applications running on machines with production software.

Documentation on settings that can be used within the environment configurations can be found here: http://guides.rubyonrails.org/configuring.html

内心激荡 2024-09-05 22:14:39

开发模式不会缓存您的代码,不会缓存 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

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