Nestjs集成redis

一、安装

yarn add redis

 二、使用

1.在module中注册

import { createClient } from 'redis'

@Module({
    providers:[{
      provide: 'REDIS_CLIENT',// 定义一个服务提供者
      // 创建 Redis 客户端实例
      async useFactory() {
        const client = createClient({
          socket: {
            host: '127.0.0.1',
            port: 6379,
          }
        })
        await client.connect()
        return client;
      }
    }]
})

2.在 service中使用

import { Injectable, Inject } from '@nestjs/common';
import { RedisClientType } from 'redis';

@Injectable()
export class AppService {
  @Inject('REDIS_CLIENT')
  private redisClient: RedisClientType;

  async getHello() {
    // 获取所有值
    const value = await this.redisClient.keys('*');

    // 设置值
    const setvalue = await this.redisClient.set('demo', '11111');

    // 获取值
    const getvalue = await this.redisClient.get('demo');

    // 删除值 1代表成功 0代表没有
    const delvalue = await this.redisClient.del('demo');

    // 定时设置值 10s
    const setTimevalue = await this.redisClient.set('demo', '11111', { EX: 10 })
    return 'Hello World!';
  }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值