有没有办法绕过预钩子中的查找?

时间:2020-10-30 16:55:22

标签: typescript mongoose nestjs

我正在尝试在nestjs中实现Redis和Mongoose v5.10.0一起,我想知道是否存在一种绕过查找执行并从Redis返回数据的方法。

使用猫鼬的Pre钩子,我应该能够检查数据是否已经存储在Redis中。在这一点上,我想绕过查找查询的执行,并从Redis返回数据,但是我找不到解决方法。这是我的代码,用于检查数据是否已存储在Redis中。

schema.pre('find', async function(next){
    const fromCache = await cacheService.getValue('somekey');
    if(!!fromCache){
        return JSON.parse(fromCache);
    }
    next();
});

0 个答案:

没有答案