[Server] Fix query performance

This commit is contained in:
syuilo 2017-01-23 14:53:46 +09:00
parent 18ec136e1a
commit b82eda5046
6 changed files with 11 additions and 11 deletions

View file

@ -49,14 +49,14 @@ module.exports = (params, user, app) =>
// Construct query
const sort = {
created_at: -1
_id: -1
};
const query = {
user_id: user._id,
parent_id: folder
};
if (since !== null) {
sort.created_at = 1;
sort._id = 1;
query._id = {
$gt: new mongo.ObjectID(since)
};

View file

@ -74,11 +74,11 @@ module.exports = (params, user) =>
};
const sort = {
created_at: -1
_id: -1
};
if (since !== null) {
sort.created_at = 1;
sort._id = 1;
query._id = {
$gt: new mongo.ObjectID(since)
};

View file

@ -48,7 +48,7 @@ module.exports = (params, user) =>
limit: limit,
skip: offset,
sort: {
created_at: -1
_id: -1
}
});

View file

@ -38,11 +38,11 @@ module.exports = (params) =>
// Construct query
const sort = {
created_at: -1
_id: -1
};
const query = {};
if (since !== null) {
sort.created_at = 1;
sort._id = 1;
query._id = {
$gt: new mongo.ObjectID(since)
};

View file

@ -55,13 +55,13 @@ module.exports = (params, user) =>
// Construct query
const sort = {
created_at: -1
_id: -1
};
const query = {
repost_id: post._id
};
if (since !== null) {
sort.created_at = 1;
sort._id = 1;
query._id = {
$gt: new mongo.ObjectID(since)
};

View file

@ -39,11 +39,11 @@ module.exports = (params, me) =>
// Construct query
const sort = {
created_at: -1
_id: -1
};
const query = {};
if (since !== null) {
sort.created_at = 1;
sort._id = 1;
query._id = {
$gt: new mongo.ObjectID(since)
};