Cache Setup v4
Cache retrieved data for quick access.
Usage Notes v4
Setup the Cache
<script type="module">
import { WfuCache, WfuCacheItem } from 'https://cdn.jsdelivr.net/gh/sygnaltech/[email protected]/src/modules/webflow-cache.min.js';
$(function() {
const cache = new WfuCache({
val: {
myData: new WfuCacheItem({
store: "sessionStorage",
name: "myData",
updateFnAsync: getMyDataAsync
})
}
});
});
</script> Access your Data
Configure your Data Retrieval functions
STEP 1 - Add the Library
Last updated