#DevHack: Caching data for your VSCode extension
This post is over a year old, some of this information may be out of date.
For my Visual Studio Code extension to autocomplete the Microsoft Graph APIs, I wanted to improve the speed of the suggestions by implementing a cache. That way, you would not have to do the same API calls each time.
In-memory cache has its limits
Initially, I started with just an in-memory cache. An in-memory cache is easy to establish, but whenever you close your VSCode session. The cache will be gone. Next time, the cache has to be created all from scratch.
What are the options?
Luckily VSCode provides you a couple of options to cache data for your extension. There are two places where you can cache data:
workspaceState
: When you want to cache data for the current workspace/project.globalState
: When you want to cache data independent of your current project.
Both of these states are a Memento
object, which allows you to get
and update
a value.
Using the VSCode state
For my extension, I choose to use the globalState
, as I want to cache the Microsoft Graph data independently from the current project. Using the workspaceState
is similar to the globalState
.
Start by creating the cache as follows:
export async function activate(context: vscode.ExtensionContext) {
const defaultData: CacheObject = { v1: {}, beta: {} }; const cacheName = `${EXTENSION_NAME}_cache`; const cache = context.globalState.get<CacheObject>(cacheName, defaultData);
...}
Once created, you can put data into the cache:
// Add API response to the right API version of the cachecache[version][path] = apiData;await this.context.globalState.update(cacheName, cache);
When you added the data. You can start retrieving it as follows:
cache = context.globalState.get<CacheObject>(cacheName);
Currently you can only get and update data, you cannot clear/delete the cache. If you can override the cache with a default value.
const clear = () => { cache = {}; await context.globalState.update(cacheName, {});}
Related articles
Report issues or make changes on GitHub
Found a typo or issue in this article? Visit the GitHub repository to make changes or submit a bug report.
Comments
Let's build together
Manage content in VS Code
Present from VS Code