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) {
});
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) {
});