0.2.5 • Published 5 months ago

@anchan828/nest-simple-redlock v0.2.5

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

@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

0.2.5

5 months ago

0.2.4

5 months ago

0.2.3

5 months ago

0.2.1

6 months ago

0.2.0

6 months ago

0.2.2

5 months ago

0.1.63

6 months ago

0.1.64

6 months ago

0.1.65

6 months ago

0.1.62

6 months ago

0.1.52

9 months ago

0.1.53

9 months ago

0.1.54

8 months ago

0.1.55

8 months ago

0.1.56

8 months ago

0.1.57

8 months ago

0.1.58

7 months ago

0.1.59

7 months ago

0.1.50

9 months ago

0.1.51

9 months ago

0.1.49

9 months ago

0.1.45

10 months ago

0.1.46

10 months ago

0.1.47

10 months ago

0.1.48

10 months ago

0.1.60

7 months ago

0.1.61

7 months ago

0.1.41

12 months ago

0.1.42

11 months ago

0.1.43

11 months ago

0.1.44

11 months ago

0.1.40

12 months ago

0.1.39

1 year ago

0.1.38

1 year ago

0.1.37

1 year ago

0.1.36

1 year ago

0.1.35

1 year ago

0.1.34

1 year ago

0.1.33

1 year ago

0.1.32

1 year ago

0.1.31

1 year ago

0.1.30

1 year ago

0.1.29

1 year ago