#DevHack: Caching data for your VSCode extension
For my [Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-msgraph-autocomplete) 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