Last active
June 18, 2018 15:44
-
-
Save jkyberneees/ad19d1baecd2920a9e3d1b6e16f441cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // on application instance start... | |
| const counter = hazelcast.getAtomicLong('distributed-pushes-counter') | |
| await counter.compareAndSet(0, await PushLogs.count({})) | |
| // on push... | |
| await counter.incrementAndGet() | |
| // on request | |
| await counter.get() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment