0

正常に動作するが遅い次のクエリがありますが、適切にインデックスを付ける方法がわかりません。

r.db('my_db')
.table('messages')
.filter({ community_id : community.id})
.filter(function(row){
    return row('mentions').contains(user.id);
})
.filter(function(row){
    return row('channels').contains(channel.id);
})
.orderBy(r.desc('created_at'))
.skip(0)
.limit(50);

次のインデックスで試しました(Thinky.jsを使用):

Model.ensureIndex("user_mentions", function(message){
    return message("mentions").map(function(user_id){
        return message("channels").map(function(channel_id){
            return [ 
                message("community_id"), 
                message("mentions").contains(user_id),
                message("channels").contains(channel_id), 
                message('created_at') 
            ];
        }); 
    });

}, {multi: true});

そして、それを照会するために、これを試しました:

r.db('my_db')
.table('messages')
.between(
    [community.id, user.id, channel.id, r.minval], 
    [community.id, data.user.id, channel.id, r.maxval], 
    { index : 'user_mentions' }
)
.orderBy({index:r.desc("user_mentions")})
.skip(0)
.limit(50);

メッセージ テーブルは次のようになります。

id | community_id | mentions (array of user_ids) | channels (array of channel_ids) | created_at

しかし、私はゼロの結果を得ることになります。どんな提案でも大歓迎です!

4

1 に答える 1