I have to develop a system that'll track click on some link for our customers.
So our customer pay for a Package, which are like this
class Package{
int ID;
int ClickCountRemaining;
}
So when a user click on a link
- I load the customer package from DB
- look if there is any Click remaining, and if the click is not from a bot
- if the click is ok, decrease the click count and update the package in the db
My problem is, if there is 2 conccurrent acces to the package then I'll just execute
"UPDATE Package SET ClickCountRemaining = @ClickCountRemaining"
Twice with @ClickCountRemaining with the same value.
My first Idea is to use a trigger to update this field (when I insert a Click), it's nice but we can't see any evolution of ClickCountRemaining at the model level, and that's why I'm looking for another solution here.
So, do yo have any ? I can't use the unit of work pattern here because It works only if the Package are loaded in the same process, and ehre we can have many machine doing executing this process.