I am wondering the best way to do this for speed and accuracy, here is what our application does:
- Check if credit is 1 or above (Pre check)
- Process job (takes a little time)
- Job complete, check if still credits exist to finish job (credit count 1 or above)
- Deduct credit
- Finish job
This process is repeated 50,000+ times (threaded, using a queue system) and is currently using a mysql database to handle the counter.
Is there any better solutions other than a mysql database style counter?
I was thinking a schema like:
user_id | credit_count
Is this the best schema I should use? And the thread just locks row than deducts credit, than release row for next thread.