🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
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.9
latest
Source
npm
Version published
Weekly downloads
606
-16.99%
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
$ npm i -D @types/redis

Usage

example:

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

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));
}

const wait = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));
function main() {
  for (let i = 0; i < 10; i++) {
    debouncedCall(i);
    await wait(100);
  }
}

output:

called 9

QA

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

Algorithm

FUNCTION DISTRIBUTED_DEBOUNCE(key, wait, callback)

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

SLEEP(wait)

currentTicket = GET(key)
IF currentTicket != ticket
  EXIT
END

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

callback()

Keywords

nodejs

FAQs

Package last updated on 27 Jan 2021

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