Selwin Ong

Results 509 comments of Selwin Ong

You'll have to put in datetime in UTC. I do agree that the documentation could be very much improved.

I'm absolutely swamped this week, will try to address your questions this weekend

Sorry for the delay. When the scheduler is started, [register_birth()](https://github.com/ui/rq-scheduler/blob/master/rq_scheduler/scheduler.py#L53) is called and it sets the `rq:scheduler` key that automatically expires. Similar to RQ, this library also intercepts `SIGINT` and...

Yeah, this can be problematic if the scheduler is running on a low interval. I think we can easily avoid this by choosing a mininum lock interval of 60. Mind...

I'll try to make a release this weekend.

Yes, let's build this into `rq-scheduler`. See my comment here: https://github.com/ui/rq-scheduler/pull/62#issuecomment-74796551

@darkpixel has an interesting suggestion. Allow multiple schedulers to run, but each scheduler has to acquire a lock when scheduling jobs. I think this is a good solution to people...

We can use "redis.expire(30)" so that if scheduler crashes, the lock will still be expired by Redis :) Sent from my phone > On Aug 20, 2015, at 11:26 AM,...

That's a good idea. Mind making a PR? :)

Sorry for the late reply. I’m open to suggestions on how we can improve the Performace of this library. I mainly use this library in conjunction with Django and uses...