We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bc9d9d2 + 4434409 commit 14cdd83Copy full SHA for 14cdd83
content/techniques/caching.md
@@ -74,10 +74,10 @@ To remove an item from the cache, use the `del` method:
74
await this.cacheManager.del('key');
75
```
76
77
-To clear the entire cache, use the `reset` method:
+To clear the entire cache, use the `clear` method:
78
79
```typescript
80
-await this.cacheManager.reset();
+await this.cacheManager.clear();
81
82
83
#### Auto-caching responses
0 commit comments