You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/website/docs/guide/11-caching.mdx
+9-18
Original file line number
Diff line number
Diff line change
@@ -5,11 +5,6 @@ description: A guide on how to implement caching in your bot using CommandKit.
5
5
6
6
# Caching
7
7
8
-
:::warning
9
-
This feature is currently available in development version of CommandKit only. Since it is an unstable feature, it may change in the future.
10
-
You need to prefix the function with `unstable_` to use this feature until it is stable.
11
-
:::
12
-
13
8
Caching is a technique used to store data in a temporary storage to reduce the time it takes to fetch the data from the original source. This can be useful in Discord bots to reduce the number of database queries or external API calls.
14
9
15
10
CommandKit provides an easy way to implement caching in your bot without having to worry about the underlying implementation. This guide will show you how to use the caching feature in CommandKit.
@@ -58,11 +53,7 @@ Let's build a simple XP system using CommandKit's caching feature. We'll create:
0 commit comments