Use _id instead of createdAt to improve performance
This commit is contained in:
parent
f20c08f0f7
commit
97c4758de2
|
@ -38,12 +38,8 @@ module.exports = (params, user) => new Promise(async (res, rej) => {
|
||||||
if (pollErr) return rej('invalid poll param');
|
if (pollErr) return rej('invalid poll param');
|
||||||
|
|
||||||
const query = {
|
const query = {
|
||||||
createdAt: {
|
_id: { $gte: new Date(Date.now() - ms('1days')) },
|
||||||
$gte: new Date(Date.now() - ms('1days'))
|
renoteCount: { $gt: 0 },
|
||||||
},
|
|
||||||
renoteCount: {
|
|
||||||
$gt: 0
|
|
||||||
},
|
|
||||||
'_user.host': null
|
'_user.host': null
|
||||||
} as any;
|
} as any;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue