Skip to content

Instantly share code, notes, and snippets.

@dheerosaur
Last active August 29, 2015 14:10
Show Gist options
  • Save dheerosaur/39804a80b70b3f13a48b to your computer and use it in GitHub Desktop.
Save dheerosaur/39804a80b70b3f13a48b to your computer and use it in GitHub Desktop.
var dataCache = {};
function getData (query) {
var key = query.startDate;
if ( !(key in dataCache) ) {
dataCache[key] = $.getJSON('/trip?', query);
}
}
function getNextChunk (params) {
var start = params.startDate
$.when(dataCache[startDate]).then(processResponse);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment