rails中一些有用的设置

config.active_record.auto_explain_threshold_in_seconds = 0.5

当sql查询超过0.5秒时,自动将sql 记在log里

 

config.whiny_nils = true

对nil使用方法时,会提示具体错误信息,如果设置为false,不会提示具体错误信息

你可能感兴趣的:(rails)