User
模型:
user_id phone_no
------- --------
1 555-0001
2 555-0002
.
.
每个用户都有自己的电话号码。
Friend
模型:
user_id phone_no
------- --------
user 1 555-0002
user 1 555-0003
user 2 555-0001
user 2 555-0004
用户可能有很多电话号码。电话号码匹配被视为朋友(一个方向),例如所有者555-0003
是 的朋友user 1
,反之亦然。
Topic
模型:
topic_id user_id title
-------- ------- -----
1 1 Hello
2 1 Hi
如何优化用户好友获取最近10个话题的查询?
我试过类似的东西:
user = User.find(2) # any user
phones = Friend.all(:conditions=>['user_id = ?',user.id],:select=>'phone_no').map {|x| x.phone_no}
friends = User.all(:conditions=>['phone_no in (?), phones]).map {|x| x.user_id}
topics = Topic.all(:conditions=>['user_id in (?), friends], :limit => 10, :order => 'updated_at DESC')
但在分解查询时担心性能。如何优化此 ActiveRecord 查询?