我不知道 AOP 是什么,以前讨论过几次这个话题,看有没有帮助
http://ruby-china.org/topics/6681 http://ruby-china.org/topics/4676
所以很可能是测试没通过,走到了 render :new
这一步
你把 @post.save 换成 @post.save! ,应该会抛出相应的错误。
#4 楼 @woaigithub 沉寂多时了
mongodb
mongodb
这个验证是用户验证还是数据验证啊。
多看 字节社 豆瓣
技术书都是图灵的。
1 状态修改的操作不能用 get,可以被伪造提交 2 likeable 这个属性可以用序列化 Array 方法 3 用 json 数据而不是纯文本,不过对于这个简单应用纯文本也没事 4 "/topics/likeable" 这个 url 没有 id?
.data("")
是 jQuery 的 api http://jqapi.com/#p=jQuery.data
File.open('filename').each_line do |line|
color, x, y = line.split
end
会不会是 js 一些操作耗时或者读取外部资源耗时?
MongoDB 没有固定模式,所以要读取一条数据才能确定它有什么字段和类型。
Mongoid 的话用 ModelName.fields
可以获得自己在 Model 里面定义的字段信息。
whenever,了解下系统的 cron
#7 楼 @jfreebird 期待你拼装出一个 Rails。
#8 楼 @sanivbyfish 晕,我以为在说 ActiveRecord。
mongoid 是 order_by http://mongoid.org/en/origin/docs/options.html#sorting
#6 楼 @sanivbyfish 贴一下你加上 order 后的代码
#4 楼 @sanivbyfish commects 不是一个 associations(has_many)吗?
post.commects.order("xxx DESC").each
如果所有的 comments 都需要这个 order,可以加 default_scope
#2 楼 @beihuiguixian 是的。
可以放在 lib/ 下面。
喜欢 Mailgun 的 api 和文档,Postmark 网站设计太刺了。
推荐楼主一本书 http://book.douban.com/subject/3288908/ 集体智慧编程
编程不是目的,编程去解决问题才是目的,所以要知道你要解决什么问题才知道需要用什么知识。
顺便,我把模板从 erb 换到 slim,发现性能有提升
- 128000.times do
= rand(8999)+1000
Server Software: nginx/1.2.3
Server Hostname: localhost
Server Port: 4000
Document Path: /
Document Length: 512450 bytes
Concurrency Level: 10
Time taken for tests: 6.919 seconds
Complete requests: 100
Failed requests: 0
Write errors: 0
Total transferred: 51319300 bytes
HTML transferred: 51245000 bytes
Requests per second: 14.45 [#/sec] (mean)
Time per request: 691.885 [ms] (mean)
Time per request: 69.188 [ms] (mean, across all concurrent requests)
Transfer rate: 7243.47 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 0 0.1 0 0
Processing: 454 672 103.5 677 911
Waiting: 454 670 103.8 673 910
Total: 454 672 103.5 677 911
Percentage of the requests served within a certain time (ms)
50% 677
66% 709
75% 753
80% 778
90% 808
95% 864
98% 880
99% 911
100% 911 (longest request)
Started GET "/" for 127.0.0.1 at 2012-11-24 22:26:31 +0800
Processing by MainController#index as */*
Rendered main/index.html.slim within layouts/application (703.5ms)
Completed 200 OK in 905ms (Views: 704.9ms | ActiveRecord: 0.0ms)
Rendered main/index.html.slim within layouts/application (482.9ms)
Completed 200 OK in 685ms (Views: 484.5ms | ActiveRecord: 0.0ms)