zoukankan      html  css  js  c++  java
  • rails框架配置

    rails框架默认有三个模式development(开发),production(上线),test(测试)

    Development

     config.cache_classes = false 每次请求都会重新加载,修改代码之后可以直接使用。

     config.consider_all_requests_local = true 在本地测试的时候可以显示所有的错误。

     config.action_controller.perform_caching = false 

     config.action_mailer.raise_delivery_errors = false 如果寄信失败,是否要丢出例外。建议可以改成 true。

     config.active_support.deprecation = :log 随着 Rails 版本的升级,如果有方法会在之后的版本中移除,deprecation 会提示你如何因应。这里的 :log 表示会记录到 log 档案中。

    Production 模式

     config.cache_classes = true 与开发环境不同,把数据保存在内存中,速度更快

     config.action_controller.perform_caching = true 不同于 development,如果在 production 环境出现例外错误,不会显示程式 call stack 讯息,而是回传 public/500.html 页面。

     config.serve_static_assets = false “X-Sendfile” 是网页服务器提供的功能,可以让下载档案的动作完全委派给网页服务器,Rails 送出 X-Sendfile 标头后就毋需再佔住资源。

     config.force_ssl = true 是否限制全站必须SSL才能使用。 

     config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) 可以更换掉 Rails 内建的 Logger,例如换成使用 syslog 的 SyslogLogger

     config.cache_store = :mem_cache_store 设定不同的快取储存库,默认是 :memory_store,也就是每个 Rails process 各自用内存存放。业界最常用的则是 memcached 内存快取服务器

     config.action_controller.asset_host = "http://assets.example.com" 默认的静态档案位置是目前主机的 public 目录,你可以透过修改 asset_host 变更位置。例如你的静态档案放在不同台机器或 CDN(Content delivery network) 上。

    Test 模式

     config.action_dispatch.show_exceptions = false 不同于 development 或 production 碰到例外会捕捉例外后,给浏览器显示出 call stack trace 或 public/500.html 画面,在 test 模式就不处理,让例外直接报错。

     config.action_mailer.delivery_method = :test 测试模式下不会真的去寄送email

     config.active_support.deprecation = :stderr 让 deprecation 讯息会直接显示到视窗之中

  • 相关阅读:
    nyoj 202红黑树 (搜索)
    POJ 3281 Dining(最大流)
    nyoj-488 素数环 +nyoj -32 组合数 (搜索)
    LeetCode100:Same Tree
    LeetCode283:Move Zeros
    Leetcode226:Invert Binary Tree
    LeetCode258:Add Digits
    Leetcode237:Delete Node in a Linked List
    LeetCode7:Reverse Integer
    LeetCode292:Nim Game
  • 原文地址:https://www.cnblogs.com/Stay-J/p/9550063.html
Copyright © 2011-2022 走看看