Skip to content

Instantly share code, notes, and snippets.

@jkyberneees
Created June 15, 2018 14:11
Show Gist options
  • Select an option

  • Save jkyberneees/0cb514db27dee8e0773b77a7651a0a47 to your computer and use it in GitHub Desktop.

Select an option

Save jkyberneees/0cb514db27dee8e0773b77a7651a0a47 to your computer and use it in GitHub Desktop.
(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