npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

clusterutils

v1.0.0

Published

DataStore and cross worker event for nodejs cluster.

Downloads

4

Readme

ClusterUtils

Build Status

ClusterUtils is a minilize key value store library which impilement by IPC for nodejs cluster. It's only 60 line code so it is easy to understand, best code for education ever!

Features:

Cluster share memory.

Cross worker event in cluster.

When using ClusterUtils?

If you use nodejs cluster and do not wanna using database to store data. Just wanna tiny memory based key/value datastore solution.

If you wanna trigger events between workers in cluster.

Lightweight application.

Only one producer application. (Because do not have resource lock).

How to use

You can use store engine easily.

const cluster = require('cluster');
// You must include this library after first include cluster library
const ClusterUtils = require("../index");

...

if (cluster.isMaster) {
	for (let i = 0; i < 8; i++) {
		cluster.fork();
	}
} else {
	if (cluster.worker.id == 1) {
		ClusterUtils.set('custom key', 6699);
	}
	if (cluster.worker.id == 2) {
		// You should wait for IPC sync memory progress. 
		// In this example, i use setTimeout 100.
		setTimeout(()=>{
			console.log(ClusterUtils.get('custom key'));
		}, 100);
	}
}

And you can trigger other worker event in cluster.

const cluster = require('cluster');
// You must include this library after first include cluster library
const ClusterUtils = require("../index");

...

if (cluster.isMaster) {
	for (let i = 0; i < 8; i++) {
		cluster.fork();
	}
} else {
	if (cluster.worker.id == 1) {
		ClusterUtils.on('SOME_EVENT', ()=>{
			console.log(`process ${cluster.worker.id} say hello`);
		});
	}
	if (cluster.worker.id == 2) {
		// You should wait for IPC sync memory progress. 
		// In this example, i use setTimeout 100.
		setTimeout(()=>{
			// trigger a event from other process
			ClusterUtils.emit('SOME_EVENT');
		}, 100);
	}
}

API

get(key)

Get data from datastore by key.

If no found, return undefined.

Arguments:

  • key {String} : Key used to lookup the entry

set(key,value)

Add/Edit a element in the datastore.

Arguments:

  • key {String} : Key used to lookup the entry
  • value {object} : Value to store

del(key)

Delete a element fromd atastore by key.

Arguments:

  • key {String} : Key used to delete the entry

clean()

Delete all element from datastore.

on(key, callback)

Listen a cross wroker event.

Arguments:

  • key {String} : Key used to listen on
  • callback {function} : Callback function when event trigger

once(key, callback)

Listen a cross wroker event only once.

Arguments:

  • key {String} : Key used to listen on
  • callback {function} : Callback function when event trigger

removeListener(key)

Remove a event from current wroker. This function will not remove other wroker's event.

Arguments:

  • key {String} : Key used to listen on

emit(key, [callback])

Trigger a cross worker event.

Arguments:

  • key {String} : Key used to listen on
  • callback {function} (optional): Callback function when event trigger finished.

License

WTFPL