Saving context variable to the localfilesystem immediately on change

Just be aware that if you turn off the cache, the store becomes a asynchronous store, which means you cannot do:

var a = flow.get("foo");

You have to use the version with a callback function:

flow.get("foo", function(err, a) {
});
1 Like