I am trying to cache the result from an ajax call using memoize
function from Underscore.js
. I am not sure of my implementation. Also how to retrieve back the cached result data using the key. Below is my implementation:
Javascript code:
var cdata = $http
.get(HOST_URL + "/v1/report/states")
.success(function(data) {
//put the result in the angularJs scope object.
$scope.states = data;
});
//store the result in the cache.
var cachedResult = _.memoize(
function() {
return cdata;
}, "states");
Is my usage of memoize to store the result of ajax is correct. Also once it is put in cache, how to retrieve based on the key. i.e 'states'.
Let us understand how
_.memoize
works, it takes a function which needs to be memoized as first argument and caches the result of the function return for given parameter. Next time if the memoized function is invoked with same argument it will use cached result and the execution time for the function can be avoided. So it is very important to reduce the computation time.As mentioned, the above fibonaci function it memoized works perfectly fine as the argument has a primitive type.
The problem occurs when you have to memoize a function which accepts an object. To solve this,
_.memoize
accepts an optional argumenthashFunction
which will be used to hash the input. This way you can uniquely identify your objects with your own hash functions.The default implementation of
_.memoize
(using the default hash function) returns the first argument as it is - in the case of JavaScript it will return[Object object]
.So for e.g.
why default has function in _.memoize is function(x) {return x}
the problem can be avoided by passing a hash function
This was a real help for me when I was using _.memoize for a function that was working on arrays arguments.
Hope this helps many people in their work.
_.memoize
takes a function:You should understand that this is just an extra wrapper function that makes function that you pass it as an argument smarter( Adds extra mapping object to it ).
In example above function that computes fibonacci number is wrapped around with
_.memoize
. So on every function call (fibonacci(5)
orfibonacci(55555)
) passed argument matched to return value so if you need to call one more timefibonacci(55555)
it doesn't need to compute it again. It just fetches that value from that mapping object that_.memoize
provided internally.If you are using Angular.js's
$http
, you probably just want to pass{cache : true}
as a second parameter to theget
method.To store values using key value pairs, you may want to use $cacheFactory, as described in other answers like here. Basically: