Is it enough to set cache:false in my $http or I should add other configurations too?   
var self = this;
self.get = function () {
    return $http({
        method: 'GET',
        cache: false,
        url: '.......'
    });
}
Is it enough to set cache:false in my $http or I should add other configurations too?   
var self = this;
self.get = function () {
    return $http({
        method: 'GET',
        cache: false,
        url: '.......'
    });
}
 
    
    