本文主要是介绍ts 新版的@nestjs/commo下redis的注册使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一.我之前在@nestjs/commo 10以下时候注册redis时候,用在最新的"@nestjs/common": "^10.0.0",上面有问题,store添加上后,一直没能够注册成功,不加上我在redis工具上又没有查看到保存的数据,说明数据没有按照规定注册保存到想要的位置。
①添加依赖,我这里添加的依赖是符合"@nestjs/common": "^10.0.0",的,在我使用的时间下,安装的是最新的版本。
npm i @nestjs-modules/ioredis ioredis
创建redisManage模块
nest generate module redisManage
之后再创建service
nest genereate service redisManage
②在redis模块中注册redis
import { Module } from '@nestjs/common';
import { RedisModule } from '@nestjs-modules/ioredis';
import { RedisManageService } from './redis-manage.service';
@Module({imports: [RedisModule.forRoot({type: 'single',url:`//${process.env.REDIS_HOST}:${process.env.REDIS_PORT}` ||'redis://localhost:6379',}),],providers: [RedisManageService],exports: [RedisManageService],
})
export class RedisManageModule {}
③在service中创建方法,可以给其他的模块方法使用
import { Injectable } from '@nestjs/common';
import Redis from 'ioredis';
import { InjectRedis } from '@nestjs-modules/ioredis';@Injectable()
export class RedisManageService {constructor(@InjectRedis() private readonly redisCache: Redis) {}async get(key: string, isObject?: boolean) {type ResultType = string | object;const result: ResultType = await this.redisCache.get(key);if (isObject) {return JSON.parse(result);}return result;}// 如果自行定义过期时间,请使用该方法,并带第三个参数async set(key: string, value: string | number | object, ttl?: number) {const strValue = JSON.stringify(value);if (typeof value === 'object') {await this.redisCache.set(key,strValue,'EX',ttl ? ttl : 60 * 60 * 24 * 7,);} else {await this.redisCache.set(key, value, 'EX', ttl ? ttl : 60 * 60 * 24 * 7);}}async reset() {await this.redisCache.reset();}async del(key: string) {await this.redisCache.del(key);}
}
说明:这里的ttl时间为秒
60*60*24*7表示一周时间
这里创建处理之后,在使用redis添加数据之后,就可以通过redis工具查看到数据
这篇关于ts 新版的@nestjs/commo下redis的注册使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!