Skip to content

Commit 8cc0d8e

Browse files
authored
Update README with new Cache Provider interface (node-saml#608)
Cache Provider interface has changed in node-saml#532 . This updates the readme for the new interface.
1 parent bf41764 commit 8cc0d8e

File tree

1 file changed

+6
-15
lines changed

1 file changed

+6
-15
lines changed

README.md

+6-15
Original file line numberDiff line numberDiff line change
@@ -359,28 +359,19 @@ To support this scenario you can provide an implementation for a cache provider
359359

360360
```javascript
361361
{
362-
save: function(key, value, callback) {
363-
// save the key with the optional value, invokes the callback with the value saves
362+
saveAsync: async function(key, value) {
363+
// saves the key with the optional value, returns the saved value
364364
},
365-
get: function(key, callback) {
366-
// invokes 'callback' and passes the value if found, null otherwise
365+
getAsync: async function(key) {
366+
// returns the value if found, null otherwise
367367
},
368-
remove: function(key, callback) {
369-
// removes the key from the cache, invokes `callback` with the
368+
removeAsync: async function(key) {
369+
// removes the key from the cache, returns the
370370
// key removed, null if no key is removed
371371
}
372372
}
373373
```
374374

375-
The `callback` argument is a function in the style of normal Node callbacks:
376-
377-
```
378-
function callback(err, result)
379-
{
380-
381-
}
382-
```
383-
384375
Provide an instance of an object which has these functions passed to the `cacheProvider` config option when using Passport-SAML.
385376

386377
## SLO (single logout)

0 commit comments

Comments
 (0)