New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

throttler-d

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

throttler-d

Distributed throttle() function (like Underscore) built on Redis

latest
Source
npmnpm
Version
1.7.0
Version published
Weekly downloads
7
-12.5%
Maintainers
1
Weekly downloads
 
Created
Source

Distributed Throttle

This module allows you to throttle the invocation of a function (just like Underscore#throttle) across a distributed system. It is built on top of Redis. It will currently always call the function on the leading edge and the trailing edge, just like Underscore's default implementation.

Installing

npm install throttler-d

Using

// with `ioredis` object

import { IThrottlerD, ThrottledException, createThrottlerD } from 'throttler-d';
import * as redis from 'ioredis';

const redisConnection = new redis();

const throttler: IThrottlerD = createThrottlerD(redisConnection);

throttler
  .call(
    'groupKey',
    function(err) {
      if (err) {
        console.log('error!', err);
        return;
      }
      console.log('do something');
    },
    10000, // 10 seconds
  )
  .then(console.log)
  .catch(console.error);

// If you want to cancel any pending call such that the next invocation will fire immediately.
throttler
  .cancel('groupKey')
  .then(console.log)
  .catch(console.error);

This repo is forked from mixmaxhq/node-distributed-throttle-function

Keywords

redis

FAQs

Package last updated on 27 Jun 2022

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