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

@anchan828/nest-simple-redlock

v0.2.5

Published

This is a [Nest](https://github.com/nestjs/nest) implementation of the simple redlock algorithm for distributed redis locks.

Downloads

89

Readme

@anchan828/nest-simple-redlock

npm NPM

This is a Nest implementation of the redlock algorithm for distributed redis locks.

This package uses node-redlock.

Installation

$ npm i --save @anchan828/nest-simple-redlock ioredis

Quick Start

1. Import module

import { RedlockModule } from "@anchan828/nest-simple-redlock";
import Redis from "ioredis";

@Module({
  imports: [
    SimpleRedlockModule.register({
      client: new Redis({ host: "localhost" }),
      settings: {
        duration: 5000,
        stopOnError: true,
        expire: 10000,
        retryCount: 100,
        retryDelay: 200,
        retryJitter: 200,
      },
    }),
  ],
})
export class AppModule {}

Difference between duration and expire

duration < expire // good
duration > expire // bad

The duration is the maximum time the redlock wait. The expire is the expiry time of the key in Redis. The expire is used to automatically delete the lock key after some error occurs, so it is recommended to set a value greater than duration. If the expire is less than the duration, other processes will start while the locked process is running.

2. Add SimpleRedlock decorator

import { SimpleRedlock } from "@anchan828/nest-simple-redlock";

@Injectable()
export class ExampleService {
  @SimpleRedlock("lock-key")
  public async addComment(projectId: number, comment: string): Promise<void> {}
}

This is complete. redlock is working correctly!

Define complex resources (lock keys)

Using constants causes the same lock key to be used for all calls. Let's reduce the scope a bit more.

In this example, only certain projects are now locked.

import { SimpleRedlock } from "@anchan828/nest-simple-redlock";

@Injectable()
export class ExampleService {
  // The arguments define the class object to which the decorator is being added and the method arguments in order.
  @SimpleRedlock<ExampleService["addComment"]>(
    (target: ExampleService, projectId: number, comment: string) => `projects/${projectId}/comments`,
  )
  public async addComment(projectId: number, comment: string): Promise<void> {}
}

Of course, you can lock multiple keys.

@Injectable()
export class ExampleService {
  @SimpleRedlock<ExampleService["updateComments"]>(
    (target: ExampleService, projectId: number, args: Array<{ commentId: number; comment: string }>) =>
      args.map((arg) => `projects/${projectId}/comments/${arg.commentId}`),
  )
  public async updateComments(projectId: number, args: Array<{ commentId: number; comment: string }>): Promise<void> {}
}

Using SimpleRedlock service

If you want to use node-redlock as is, use RedlockService.

import { SimpleRedlockService } from "@anchan828/nest-simple-redlock";

@Injectable()
export class ExampleService {
  constructor(private readonly redlock: SimpleRedlockService) {}

  public async addComment(projectId: number, comment: string): Promise<void> {
    await this.redlock.using(
      [`projects/${projectId}/comments`],
      { expire: 1000, retryCount: 10, retryDelay: 200, retryInterval: 200 },
      (signal) => {
        // Do something...

        if (signal.aborted) {
          throw signal.error;
        }
      },
    );
  }
}

Using fake SimpleRedlockService

If you do not want to use Redis in your Unit tests, define the fake class as SimpleRedlockService.

const app = await Test.createTestingModule({
  providers: [TestService, { provide: SimpleRedlockService, useClass: FakeSimpleRedlockService }],
}).compile();

Troubleshooting

Nest can't resolve dependencies of the XXX. Please make sure that the "@simpleRedlockService" property is available in the current context.

This is the error output when using the SimpleRedlock decorator without importing the SimpleRedlockModule.

import { SimpleRedlockModule } from "@anchan828/nest-simple-redlock";
import Redis from "ioredis";

@Module({
  imports: [
    SimpleRedlockModule.register({
      client: new Redis({ host: "localhost" }),
    }),
  ],
})
export class AppModule {}

What should I do with Unit tests, I don't want to use Redis.

Use FakeSimpleRedlockService class. Register FakeSimpleRedlockService with the provider as SimpleRedlockService.

const app = await Test.createTestingModule({
  providers: [TestService, { provide: SimpleRedlockService, useClass: FakeSimpleRedlockService }],
}).compile();

License

MIT