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

redis-setinterval

v1.0.1

Published

setInterval for scalable applications

Downloads

8

Readme

redis-setinterval

setInterval for scalable applications. Use in case you want to execute a job on the tick of a clock across distributed workers. The job is only executed once each tick no matter how many instances. It uses a Redis locking mechanism and stores the interval time in Redis as well. That way interval time can be dynamically adjusted.

API

.start(id, [options], func)

Start the interval on id, executing func every time the interval fires, func is executed each tick. Keep in mind that it is not guaranteed the function will run ever, if the same id is used to register an interval timer, only one of them will run.

  • id: the unique identifier used to register the interval timer.
  • options: optional options object
    • initialInterval: the interval time (ms) used when the timer was never initialized before. default: 10000.
    • pollTime: The interval time used to poll Redis to acquire the lock. Default: 100
    • redis: either an existing redisclient or an object containing:
      • port: port of the Redis. Default: 6379.
      • host: Host on which redis runs. Default: localhost
      • options: additional Redis options (see createClient)
    • prefix: optional prefix to be used to scope the lock.
  • func: function that has to be executed on the tick of the interval.

This function returns an instance of RedisInterval.

RedisInterval

.setInterval(interval)

Changes the interval time. This is stored in Redis. Only has to be executed in one instance to change it for all of them.

  • interval: the new required interval time.

.reset()

Reset the current lock so it can be acquired immediately again and func will be executed immediately. Again, there is no guarantee the function will execute in the same worker that initiated the reset command

.cancel()

Cancels the interval.