// фактори в которой определяем кеширование
function datacache($cacheFactory) {
return $cacheFactory('megaCache', {});
}
// запрос
function money(){
var name = 'money';
var data = datacache.get(name);
if(data){
return data;
}
return req.option('money').then(function (res){
datacache.put(name,res);
return res;
});
}