核心是多多关注 Rails log 里面的请求统计数据,发现慢的动作 (一边情况下平均值在 10ms 以上),检查对应区域的代码是否有问题
优化代码这个话题就很长了
id desc
代替 created_at desc
来实现最新记录的排序.... 还有很多很多细节的地方,我这里一下也想不起来 楼下来补充吧
没有头像上传限制的
Whenever + Cron 搜索论坛,之前有讨论过
目前也只能这样土鳖了,我也在找好的方法
哈哈,有意思
是 Rails 的,看到 Cookie 里面的 Session key 了,另外你们论坛也是 Rails 开发的么?
哇,还能这样的,以后可以试试搞一个
Rails 里面
"User".constantize
一直很期待的特性啊
Refinements: Making ladies cry since Ruby 2.0
检查你 JS CSS 是否有问题
有点模糊
已闪人跑去搞 Mac 开发的飘过
wice_grid 可以试试,但是看起来里面的不是 wice_grid
没有必要调整了,Ruby China 的 Markdown 里面有许多细节的,看起来那个没有特别值得话这么大工程去替换的
UpYun 的呀
看起来很不错啊!
效果:
$ rvm use ruby-1.9.3-p194
$ time rails runner "puts :OK"
OK
rails runner "puts :OK" 6.00s user 3.30s system 19% cpu 47.955 total
$ rvm use ruby-1.9.3-p327-falcon
$ time rails runner "puts :OK"
OK
rails runner "puts :OK" 3.49s user 1.83s system 50% cpu 10.559 total
Unautorized 是验证失败
#7 楼 @zhangjinzhu 明白了
我最近在用 @flyerhzm 的 simple_cacheable
定义方法是在对应的 Model 里面申明,比如 post.rb
class Post < ActiveRecord::Base
include Cacheable
belongs_to :user
has_many :comments, :as => :commentable
model_cache do
with_key # post.find_cached(1)
with_association :user, :comments # post.cached_user, post.cached_comments
end
end
调用的时候
Post.first.cached_user
感觉你这样把 Cache 的配置项独立到外部文件里面以后不好管理,尤其是在 config
目录下面,为什么不在 app/qor_cache 里面呢?
attr_accessor,我手机上写错了