forked from FoundKeyGang/FoundKey
Use _id instead of createdAt to improve performance
This commit is contained in:
parent
f20c08f0f7
commit
97c4758de2
1 changed files with 2 additions and 6 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue