I want to implement a circular counter in Java. The counter on each request should increment (atomically) and on reaching an upper limit should roll over to 0.
What would be the best way to implement this and are there any existing implementations?
|
I want to implement a circular counter in Java. The counter on each request should increment (atomically) and on reaching an upper limit should roll over to 0. What would be the best way to implement this and are there any existing implementations? |
|||
|
|
|
If you're that worried about contention using either CAS or That's a straightforward counter with low contention on multithreaded access. You could wrap that to expose (current value mod max value). That is, don't store the wrapped value at all. |
||||
|
|
|
It is easy to implement such a counter atop
|
||||
|
|
|
I personally think the Writing your own counter is so trivial I'd recommend that approach. It's nicer from an OO-perspective too as it only exposes the operations you're allowed to perform.
EDIT The other problem I perceive with the while loop solution is that given a large number of threads attempting to update the counter you could end up with a situation where you have several live threads spinning and attempting to update the counter. Given that only 1 thread would succeed, all other threads would fail causing them to iterate and waste CPU cycles. |
|||||||||||||
|
|
You can use the Actually, it appears that you can use |
|||
|
|
|
If you use the modulus operator, you could just increment and return the modulus. Unfortunately the modulus operator is expensive, so I encourage other solutions where performance is important.
You would have to solve the Long.MAX_VALUE case as well. |
|||
|
|