I was reading this blog Easy Background Tasks about the badge system of some page called stackoverflow :P, so, in a comment says that they ended with a service that perform the task, but for example:
User performs action in time T1 This action depends of X number of users After time T2, you need to execute some db query and notify user(email or whatever)
I say this because of the real time experience, so the question here is, if you use threads, lets say you have 1000 users that perform actions, you will have 1000 waiting threads, so in some time, there will be reciclyng, or if the server shutsdown for some reason, you will lose all this tasks. Using a timer will end in the same situation
If you use a service you will lose the real time experience, for example in an online game.
So, how to deal with this kind of stuff?