Skip to content

codepo8/yql-localcache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

A simple wrapper for YQL to support local storage.

Use like this:

yqlcache.get({
  yql: 'select * from flickr.photos.search where text="warsaw"',
  id: 'myphotos',
  cacheage: ( 60*60*1000 ),
  callback: function(data) {
    console.log(data);
  }
});

yql - the YQL statement
id - the storage key for localstorage
cacheage - how long to store the data
callback - function to call when the data is retrieved

The returned data in the callback is an object with two properties:

data - the YQL data 
type - the type of data - either 'cached' for cached data, 'freshcache' 
       for newly cached information or 'live' when caching is not available.


About

Wrapper to store YQL results in localstorage when the browser supports it

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published