I see following code in CalendarServer-7.0. Can I go with these values in Production?

If not, why not? Please provide pointers.


-------------------------------------------------------------------------------------------------------------------------------------------------------

        # Enable the queue and make it fast

        self.patch(self.config.Scheduling.Options.WorkQueues, "Enabled", True)

        self.patch(self.config.Scheduling.Options.WorkQueues, "RequestDelaySeconds", 0.1)

        self.patch(self.config.Scheduling.Options.WorkQueues, "ReplyDelaySeconds", 0.1)

        self.patch(self.config.Scheduling.Options.WorkQueues, "AutoReplyDelaySeconds", 0.1)

        self.patch(self.config.Scheduling.Options.WorkQueues, "AttendeeRefreshBatchDelaySeconds", 0.1)

        self.patch(self.config.Scheduling.Options.WorkQueues, "AttendeeRefreshBatchIntervalSeconds", 0.1)


        # Reschedule quickly

        self.patch(JobItem, "failureRescheduleInterval", 1)

        self.patch(JobItem, "lockRescheduleInterval", 1)






On Fri, Nov 25, 2016 at 11:53 AM, Gaurav Jain <monkeyfdude@gmail.com> wrote:
Would it help faster recipient inbox update if I change this value to 1 or 2 secs?

Would there be any side effects?

On Thu, Nov 24, 2016 at 6:09 PM, Gaurav Jain <monkeyfdude@gmail.com> wrote:
Hi,

Can you please tell the meaning of in stdconfig.plist:

<!-- Number of seconds delay for a queued scheduling request/cancel -->
<key>RequestDelaySeconds</key> <integer>5</integer> Regards,