美文网首页
nestjs连接redis

nestjs连接redis

作者: 程序员不务正业 | 来源:发表于2021-11-29 19:40 被阅读0次

安装

npm install nestjs-redis

连接

# cache.module.ts

import { Module } from '@nestjs/common';
import { RedisModule } from 'nestjs-redis'
import {CacheService} from './cache.service';
let options={
          port: 6379,
          host: '123.456.432.1', // 远程调试需要设置bindip 为0.0.0.0 并且设置密码
          password: '123',  // 非远程不需要密码
          decode_responses:true,
          db: 3
  }
@Module({
      imports: [
          RedisModule.register(options),
      ],

      //!!!!!!!外部模块需要使用必须先导出,外部模块引入
      // 将 CacheService 引入改模块
      providers: [CacheService],
      // 再将 CacheService 暴露出去
      exports: [CacheService]

  })
export class CacheModule {}

使用

# cache.service.ts
import { Injectable } from '@nestjs/common';
import { RedisService } from 'nestjs-redis';

@Injectable()
export class CacheService {
  public client;
    constructor(private redisService: RedisService) {
        this.getClient();
    }
    async getClient() {
        this.client = await this.redisService.getClient()
    }

/**
    * @Description: 封装设置redis缓存的方法
    * @param key {String} key值
    * @param value {String} key的值
    * @param seconds {Number} 过期时间 秒秒秒!!!
    * @return: Promise<any>
    */
    //设置值的方法
    public async set(key:string, value:any, seconds?:number) {
        value = JSON.stringify(value);
        if(!this.client){
            await this.getClient();
        }
        if (!seconds) {
            await this.client.set(key, value);
        } else {
            await this.client.set(key, value, 'EX', seconds);
        }
    }

    //获取值的方法
    public async get(key:string) {
        if(!this.client){
            await this.getClient();
        }
        var data = await this.client.get(key);           
        if (!data) return;
        return JSON.parse(data);       
    }

    //获取值的方法
    public async del(key:string) {
        if(!this.client){
            await this.getClient();
        }
        await this.client.del(key);           
    }
    // 清理缓存
    public async flushall(): Promise<any> {
       if (!this.client) {
           await this.getClient();
       }
 
       await this.client.flushall();
   }
}

相关文章

  • nestjs连接redis

    安装 连接 使用

  • NestJS连接Redis数据库

    1、下载依赖 2、封装Redis常用方法,创建commonRedis.service.ts文件 3、在使用Redi...

  • Redis学习之路(9)命令 -Redis 连接

    Redis 连接 Redis 连接命令主要是用于连接 redis 服务。 Redis 连接命令

  • redis常用命令

    查看redis进程 连接redis redis启动 redis停止 redis查看配置文件 redis查看最大连接...

  • hyperf遇到的坑redis连接报错

    redis连接方式 redis 代理连接池 实际是继承了redis客户端代理封装成连接池 多个连接的redis

  • springboot 2.x整合redis

    引入redis依赖 设置连接redis的配置 Redis配置 配置redis连接 开始使用

  • Redis数据库基础

    一、Redis连接 1. redis-cli 或者 redis-cli -p 6379 //连接redis数据库...

  • Redis 连接

    Redis 连接 Redis 连接命令主要是用于连接 redis 服务。 实例 以下实例演示了客户端如何通过密码验...

  • Python操作Redis

    Python操作Redis 连接 Redis **import **redis r = redis.StrictR...

  • Redis 连接

    Redis 连接命令主要是用于连接 redis 服务。实例以下实例演示了客户端如何通过密码验证连接到 redis ...

网友评论

      本文标题:nestjs连接redis

      本文链接:https://www.haomeiwen.com/subject/mtilxrtx.html