admin管理员组文章数量:1341459
I read the doc of nestjs recently, and learned something from it.
But I found something that puzzled me.
In Techniques/Caching, the doc shows me to use a decorator like @UseInterceptors(CacheInterceptor)
on a controller to cache its response (default track by route).
I wrote a testcase and found it's useful. But I didn't find any explanation to show how to clean the cache. That means I have to wait for the cache to expire.
In my opinion, a cache store must provide an API to clear the cache by key, so that it can update the cache when data changes (by explicitly calling a clear API).
Is there any way to do that?
I read the doc of nestjs recently, and learned something from it.
But I found something that puzzled me.
In Techniques/Caching, the doc shows me to use a decorator like @UseInterceptors(CacheInterceptor)
on a controller to cache its response (default track by route).
I wrote a testcase and found it's useful. But I didn't find any explanation to show how to clean the cache. That means I have to wait for the cache to expire.
In my opinion, a cache store must provide an API to clear the cache by key, so that it can update the cache when data changes (by explicitly calling a clear API).
Is there any way to do that?
Share Improve this question edited Mar 14, 2019 at 13:26 Kim Kern 60.7k20 gold badges218 silver badges214 bronze badges asked Mar 14, 2019 at 6:40 pingzepingze 1,0492 gold badges11 silver badges19 bronze badges 2- Are you looking for a way to remove cache from backend? – Janith Commented Mar 14, 2019 at 7:43
- @JanithKasun I want to know how to remove cache from backend, by the Caching module designed in Nestjs – pingze Commented Mar 14, 2019 at 8:14
2 Answers
Reset to default 6You can inject the underlying cache-manager
instance with @Inject(CACHE_MANAGER)
. On the cache-manager
instance you can then call the method del(key, cb)
to clear the cache for a specified key, see the docs.
Example
counter = 0;
constructor(@Inject(CACHE_MANAGER) private cacheManager) {}
// The first call increments to one, the preceding calls will be answered by the cache
// without incrementing the counter. Only after you clear the cache by calling /reset
// the counter will be incremented once again.
@Get()
@UseInterceptors(CacheInterceptor)
incrementCounter() {
this.counter++;
return this.counter;
}
// Call this endpoint to reset the cache for the route '/'
@Get('reset')
resetCache() {
const routeToClear = '/';
this.cacheManager.del(routeToClear, () => console.log('clear done'));
}
You could also use another approach, you could use utils-decorators lib (npm install --save utils-decorators
) and take advantage of the AsyncMemoize decorator. Then you only need to add a decorator to you controller function:
import {memoizeAsync} from 'utils-decorators';
const cache = new Map();
class Controller {
@Get()
@memoizeAsync({cache: cache})
incrementCounter() {
this.counter++;
return this.counter;
}
@Get('reset')
resetCache() {
// do whatever you want with the cache map.
}
}
本文标签: javascriptHow to control cache in NestjsStack Overflow
版权声明:本文标题:javascript - How to control cache in Nestjs? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743662876a2518242.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论