Created
June 15, 2018 14:11
-
-
Save jkyberneees/0cb514db27dee8e0773b77a7651a0a47 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
| (async () => { | |
| const Client = require('hazelcast-client').Client | |
| const hz = await Client.newHazelcastClient() | |
| const list = hz.getList('my-distributed-list') | |
| await list.add(process.pid) | |
| console.log(await list.toArray()) | |
| await hz.shutdown() | |
| })() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment