nestjs-redis icon indicating copy to clipboard operation
nestjs-redis copied to clipboard

nestjs redis module

Results 56 nestjs-redis issues
Sort by recently updated
recently updated
newest added

https://github.com/skunight/nestjs-redis/blob/0715fe6809af42ba0996c9d0d30529c887e17fc1/lib/redis-core.module.ts#L19 It is a packed module. But why global?

使用redis做签到数据 /* *redis *setbit a 11 1 *使用下面的方法直接get key *控制台返回 'value:: ' *直接返回数据,swagger里面显示返回的是一个特殊字符 *请教一下如何获取二进制的bitmap数据,不然获取签到数据要循环很多次肯定是不科学的 */ public async getBitValue(key: string): Promise { if (!this.client) { await this.getClient(); } const data =...

Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 5.1.1 to 5.1.2. Release notes Sourced from glob-parent's releases. v5.1.2 Bug Fixes eliminate ReDoS (#36) (f923116) Changelog Sourced from glob-parent's changelog. 5.1.2 (2021-03-06) Bug Fixes eliminate ReDoS...

dependencies

how to monitoring of Redis key expired events with nestjs-redis?

Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9. Changelog Sourced from hosted-git-info's changelog. 2.8.9 (2021-04-07) Bug Fixes backport regex fix from #76 (29adfe5), closes #84 Commits 8d4b369 chore(release): 2.8.9 29adfe5 fix: backport...

dependencies

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.20 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...

dependencies

Because `export interface RedisModuleOptions extends RedisOptions`, field `name` is already in use by `ioredis` for `name of master` in SentinelConnector. You should use a different field for multi-client connection. Otherwise,...

Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1. Changelog Sourced from y18n's changelog. Change Log All notable changes to this project will be documented in this file. See standard-version for commit guidelines....

dependencies

───────────────┬──────────────────────────────────────────────────────────────┐ │ High │ Server-Side Request Forgery │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │ Package │ axios │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │ Patched in │ >=0.21.1 │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │ Dependency of │ nestjs-redis │ ├───────────────┼──────────────────────────────────────────────────────────────┤ │...

Is it possible to setup connection to use master/slaves instances of Redis? Many thanks!