Hi,
I'm currently using Restangular and I have this code to turn on caching.
Here is an example Restangular code that I use in my application but there are more.
DataService.setDefaultHttpFields({cache: true});
DataService.one('worlds').customGET('', { 'token' : $scope.userData.bearerToken }).then(function(res) { ........ })
How will I use AngularCache with it so I can expire the cached data?
Thanks,
Neil