简体   繁体   English

解析云代码作业 Function 优化

[英]Parse Cloud Code Job Function Optimization

I have a job on cloud code that I am running.我有一份正在运行的云代码工作。 It seems to work when I manually run the job.当我手动运行作业时,它似乎工作。 I think scheduling is posing an issue with its setup an frequency of running so I think it's unrelated to the actual code.我认为调度对其设置和运行频率造成了问题,因此我认为它与实际代码无关。 Perhaps I'm wrong, but curious if there's a more efficient way to poll my parse class.也许我错了,但好奇是否有更有效的方法来轮询我的解析 class。 I have an app where I am trying to find bookings that are coming up within the next hour from now(), and if there are send a push notification to the users within that class.我有一个应用程序,我试图在其中查找从现在开始的下一小时内即将到来的预订(),并且如果有向该 class 内的用户发送推送通知。 Again, this runs but I think I may be able to optimize my query to only get items within that time frame vs more items that have a certain status.同样,这会运行,但我认为我可能能够优化我的查询以仅在该时间范围内获取项目而不是具有特定状态的更多项目。

Parse.Cloud.job("updateReviews", async (request) => {

var resultCount = 0;

// Query all bookings with a status of confirmed
var query = new Parse.Query("bookings");
query.equalTo("status", "confirmed");
const results = await query.find({useMasterKey:true});

results.forEach(object => {

    var users = [];
    users.push(object.get("buyerId"));
    users.push(object.get("placeOwner"));

    var today = new moment();
    var hourFrom = moment().add(1, 'hours');
    var startTime = moment(object.get("startTime"));

    if (startTime.isBetween(today, hourFrom)) {
    
        console.log("BETWEEN THE TIMEFRAME");
        resultCount += 1;

        users.forEach(sendPush);

    } else {
        
        console.log("NOT BETWEEN THE TIME FRAME, PASS OVER");
    }
});


return ("Successfully sent " + resultCount + " new notifications!");

}); });

function sendPush(value, index, array) { function sendPush(值,索引,数组){

var pushType = "bookingConfirmed";

let query = new Parse.Query(Parse.Installation);
query.equalTo("userId", value);
return Parse.Push.send({
    where: query,
    data: {
        title: "New Booking Coming Up",
        alert: "You have a booking coming up soon!",
        pushType
    }
},{useMasterKey: true});

} }

Yes.是的。 It could be much better.它可能会好得多。 I'd try something like this:我会尝试这样的事情:

Parse.Cloud.job('updateReviews', async () => {
  // Query all bookings with a status of confirmed
  const query = new Parse.Query('bookings');
  query.equalTo('status', 'confirmed');
  const now = new Date();
  query.greaterThanOrEqualTo('startTime', now);
  query.lessThanOrEqualTo('startTime', new Date(now.getTime() + 60 * 60 * 1000));
  const results = await query.find({ useMasterKey: true });

  const pushType = "bookingConfirmed";

  const pushQuery = new Parse.Query(Parse.Installation);
  pushQuery.containedIn("userId", results.map(result => result.get('buyerId')).concat(results.map(result => result.get('placeOwner'))));
  await Parse.Push.send({
    where: pushQuery,
    data: {
      title: 'New Booking Coming Up',
      alert: 'You have a booking coming up soon!',
      pushType
    }
  }, { useMasterKey: true });

  return (`Successfully sent ${results.length} new notifications!`);
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM