Hi I have developed a scheduler sometime back for an ASP.Net site using cache expiration callbacks. I have the budget now to move the site to a dedicated server so I have written the scheduler as a windows service using a timer object - its working well in test envirinment. I want to know if the timer approach is good enough for this. In other words - what are the best design strategies for creating a ROBUST C# scheduler engine which can load/dispatch the configured/stored tasks every 'n' minutes.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

I would use Quartz.NET. It's well tested, open source and I've used it several times with no problems.

EDIT: Actually, having just spoken to a colleague about scheduling, there is something to be said for using windows scheduled tasks when a lightweight solution will suffice (as another poster pointed out).

Quartz.NET is a full-featured, open source job scheduling system that can be used from smallest apps to large scale enterprise systems.

link|improve this answer
+1 for not invented here. Quartz is the bee's knees. – Anderson Imes Oct 12 '09 at 4:17
Well - I would say Quartz might be a good library to use - but it seems I have to first get used to it. And apart from that what is so unique to it - if it can run a million jobs a day - so could a timer based windows service. Apart from that, i would be making my service bulky only to use a couple of 100s of features uartz provide. I want to write and maintain my own until I really need to rely on Quartz. – MSIL Oct 12 '09 at 6:16
can I use Quartz.NET. in MsBuild Tasks ?? – Kiquenet Oct 5 '10 at 19:05
feedback

I find it very difficult to work with Quartz.NET

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.