Use _id instead of createdAt to improve performance

This commit is contained in:
syuilo 2018-05-14 13:58:44 +09:00
parent f20c08f0f7
commit 97c4758de2

View file

@ -38,12 +38,8 @@ module.exports = (params, user) => new Promise(async (res, rej) => {
if (pollErr) return rej('invalid poll param');
const query = {
createdAt: {
$gte: new Date(Date.now() - ms('1days'))
},
renoteCount: {
$gt: 0
},
_id: { $gte: new Date(Date.now() - ms('1days')) },
renoteCount: { $gt: 0 },
'_user.host': null
} as any;