-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.hbs
106 lines (70 loc) · 3.69 KB
/
README.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Visual Studio Code extension value caching
*This module is intended to be used only by Visual Studio Code extension authors. While it does not have any other module dependencies, it is only useful for developing VSCode extensions and serves no other real purpose outside the scope of Visual Studio Code extension development.*
---
`vscode-cache` is an abstraction of the [VSCode API](https://code.visualstudio.com/docs/extensionAPI/vscode-api#_a-nameextensioncontextaspan-classcodeitem-id995extensioncontextspan) `ExtensionContext.globalState` interface.
The `globalState` object is a simple storage mechanism that extensions can use to save and retrieve values and objects persistently (even between VSCode sessions). `vscode-cache` is a simple and powerful interface that wraps the `globalState` object, adding expirations, existence checking, etc.
## Why would I want to use this in my VSCode extension?
This module is ideal for extensions to store arbitrary data for long or short term. Some examples:
- Cache data that you grabbed from some database instead of hitting that database server each time
- Cache results from that 3rd party REST API that charges you for each connection
- Save user input that you aquired via the `vscode.window.showInputBox()` or `vscode.window.showQuickPick()` methods
---
## Installation
```
# npm install vscode-cache --save
```
## Basic Usage
```javascript
// First, get the module into your extension code
const Cache = require('vscode-cache');
// Extension activation method
let activate = (extensionContext) => {
// Instantiate the cache by passing your `ExtensionContext` object into it
let myCache = new Cache(extensionContext);
// Save an item to the cache by specifying a key and value
myCache.put('userName', 'John Doe')
.then(() => {
// Does the cache have userName?
console.log(myCache.has('userName')); // returns true
// Fetch the userName from the cache
let userName = myCache.get('userName');
});
};
```
## Optional expirations
You can optionally pass an expiration/lifetime (in seconds) for the cached item. If the current time is passed the expiration, then the cache no longer has it.
```javascript
// Save something in the cache for 5 seconds
myCache.put('searchResults', results, 5)
.then(()=> {
// Does the cache still have it?
console.log(myCache.has('searchResults')); // returns true
// Does the cache still have it 10 seconds later?
setTimeout(() => {
console.log(myCache.has('searchResults')); // returns false
}, 10000);
});
```
## Default values
You can optionally specify a default value when fetching a cache item just in case it doesn't exist or is expired.
```javascript
// Does the cache contain this value?
myCache.has('foo'); // returns false
// Fetch the value of foo, but give it a default value of "bar"
let foo = myCache.get('foo', 'bar');
console.log(foo); // returns bar
```
## Custom Namespaces
You can specify an optional namespace when instantiating your cache just in case you wanted more than one cache. This keeps them separate within the `globalState` object. The advantage of this is that you can use the same cache keys on different caches in order to store different values.
```javascript
// Create a cache for some API
let apiCache = new Cache(extensionContext, 'api');
// Create some sort of database cache
let databaseCache = new Cache(extensionContext, 'database');
// Store a value into the api cache using the key 'foo'
apiCache.put('foo', apiResults);
// Store a different value into the database cache using the key 'foo'
databaseCache.put('foo', databaseResults);
// Because there are two caches, you can use the same keys in each without overriding values
```
{{>main}}