I have a service class with create,list
,and update
methods to modify entity
I set the redis cache in list methods,and the cache key is list_cache_1,list_cache_2,...
my question is, how to delete all releated caches in create
or update
methods, like
this.connection.queryResultCache.remove([`list_cache:*`]);