vote up 1 vote down star
1

What's the best implementation for more than one background service in an ASP.NET application?

  1. Timer Callback

    Timer timer = new Timer(new TimerCallback(MyWorkCallback), HttpContext, 5000, 5000);
    
  2. Thread or ThreadPool

    Thread thread = new Thread(Work);
    thread.IsBackground = true;
    thread.Start();
    
  3. BackgroundWorker

    BackgroundWorker worker = new BackgroundWorker(); 
    worker.DoWork += new DoWorkEventHandler(DoMyWork);
    worker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(DoMyWork_Completed); 
    worker.RunWorkerAsync();
    
  4. Caching like http://www.codeproject.com/KB/aspnet/ASPNETService.aspx (located in Jeff Atwood's post here)

I need to run multiple background "services" at a given time. One service may run every 5 minutes where another may be once a day. It will never be more than 10 services running at a time.

flag

2 Answers

vote up 2 vote down check

Well, instead of a 'Simple Thread', you'd go for a ThreadPool.

And if it were me, I'd run it in a Windows Service and communicate to it via MSMQ.

link|flag
I'd run a Windows Service instead as well, but if you are not sure if the end user has that ability for example in a shared hosting envoironment, I want to still be sure I can still host these "services." – Jason N. Gaylord Sep 15 at 2:36
I edited my Simple Thread tag to ThreadPool. I also found a fourth option - codeproject.com/KB/aspnet/…. Thanks again for your response! – Jason N. Gaylord Sep 15 at 2:39
Regarding that option; it was brought to my attention that it will only work if someone is hitting the site. If no-one visits, it may not remove the item from the cache and execute the task. I'd check it through myself (I haven't) before using it. Certainly Windows Services is the most stable, if it exists as an option. – silky Sep 15 at 2:42
vote up 0 vote down

You should implement some states of tasks. After application recycles background service should repair broken tasks. If tasks are under transactions then there will be no problems with that behaviour.

link|flag

Your Answer

Get an OpenID
or

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