npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

nest-api-cache

v0.1.0

Published

使用redis实现nestjs接口层面的缓存

Downloads

19

Readme

一、关于本包

这个包借助了redis的缓存机制,借用Nestjs的自定义装饰器,我们在需要走redis缓存的接口上加上自定义装饰器,然后在Nestjs中的拦截器中对数据进行处理,如果该接口需要走redis缓存就会先判断redis缓存中是否已经存在数据,如果存在就直接返回,没有redis缓存就继续走到控制器,然后对数据库IO操作。针对于访问频繁的接口,可以加上这个装饰器,减少数据库IO操作,从而提高接口响应速度,在使用本包的前提是要有redis

二、使用方式

  • 安装依赖包

    npm install nest-api-cache
  • app.module.ts中导入模块

    import { NestApiCacheModule} from 'nest-api-cache';
      
    @Module({
      imports: [
        // 参数可选,第一个参数是redis的连接参数
        NestApiCacheModule.forRoot({ redisConfig: {}, redisEXSecond:10}),
      ]
    })
  • 在需要走redis的接口上加上自定义装饰器

    import { NestCacheApi } from 'nest-api-cache';
    ...
    @ApiOperation({
      summary: '查询角色列表', 
      description: '查询角色', 
      externalDocs: {
        url: 'xx?pageSize=10&pageNumber=1&name=x&status=0'
      }
    })
    @ApiCreatedResponse({
      type: RoleResDto,
      isArray: true,
      description: '分页查询角色返回值'
    })
    @HttpCode(HttpStatus.OK)
    // 加上这个自定义装饰器,可以告知拦截器这个接口要走缓存,
    // 如果需要设置缓存时间可以手动加入过期时间@NestCacheApi(2 * 60) 设置2分钟
    // 不传递过期时间,系统默认以1分钟过期
    @NestCacheApi()
    @Get()
    async roleList(
      @Query() roleReqDto: RoleReqDto,
    ): Promise<RoleListResDtoDto> {
      return await this.roleService.roleList(roleReqDto);
    }