You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

node-distributed-debounce

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-distributed-debounce

debounce function for distributed system with redis and nodejs.

1.0.5
Source
npmnpm
Version published
Weekly downloads
538
-7.08%
Maintainers
1
Weekly downloads
 
Created
Source

node-dsitributed-debounce

debounce function for distributed system with redis and nodejs.

Installation

$ npm i -S node-distributed-debounce

and install redis

$ npm i -S redis

Usage

example:

import { distributedDebounce } from 'node-distributed-debounce';
// const { distributedDebounce } = require('node-distributed-debounce');
import redis from 'redis';

const wait = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));
const redisclient = redis.createClient();

function debouncedCall(index: number) {
  distributedDebounce(() => {
    console.log('called', index);
  }, {
    wait: 5, // sec
    key: 'dist:debounce:call', // key for debounce
    redisclient,
  }).catch(e => console.error(e));
}

function main() {
  for (let i = 0; i < 10; i++) {
    debouncedCall(i);
    wait(100);
  }
}

output:

called 9

QA

  • Q: Is it works with redis cluster?
  • A: Yes, it is.

Algorithm

FUNCTION DISTRIBUTED_DEBOUCE(key, wait, callback)

currentCounter = MULTI
  INCR(key)
  EXPRE(key, wait)
EXEC

SLEEP(wait)

counter = GET(key)
IF currentCounter != counter
  EXIT
END

IF SET(key_lock, '', NX, PX, 100) != OK
  EXIT
END

callback()

Keywords

nodejs

FAQs

Package last updated on 22 Dec 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts