Skip to content

angular-cache improves upon the capabilities of the $cacheFactory provided by AngularJS.

License

Notifications You must be signed in to change notification settings

julliette/angular-cache

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

angular-cache (1.0.0-rc.1)

angular-cache is a caching system that improves upon the capabilities of the $cacheFactory provided by AngularJS. With angular-cache your caches can periodically clear themselves and flush items that have expired.

The goal of the project is to solve a general problem, not satisfy a specific scenario.

$cacheFactory
// Angular's provided $cacheFactory
app.service('myService', function ($cacheFactory) {
    // This is all you can do with $cacheFactory
    $cacheFactory('myNewCache', { capacity: 1000 }); // This cache can hold 1000 items
});

vs

$angularCacheFactory
// Smarter caching with $angularCacheFactory
app.service('myService', function ($angularCacheFactory) {
    $angularCacheFactory('myNewCache', {
        capacity: 1000,  // This cache can hold 1000 items,
        maxAge: 90000, // Items added to this cache expire after 15 minutes
        aggressiveDelete: true, // Items will be actively deleted when they expire
        cacheFlushInterval: 3600000, // This cache will clear itself every hour,
        storageMode: 'localStorage' // This cache will sync itself with localStorage
     });
});

Table of Contents

  1. Demo
  2. Features
  3. Status
  4. Download
  5. Install
  6. Usage
  7. Roadmap
  8. Changelog
  9. Contributing
  10. License

Features

storageMode

Configure the cache to sync itself with localStorage or sessionStorage. The cache will re-initialize itself from localStorage and sessionStorage on page refresh.

$angularCacheFactory('newCache', { storageMode: 'localStorage' });
localStorageImpl and sessionStorageImpl

When storageMode is set to "localStorage" or "sessionStorage" angular-cache will default to using the global localStorage and sessionStorage objects. The angular-cache localStorageImpl and sessionStorageImpl configuration parameters allow you to tell angular-cache which implementation of localStorage or sessionStorage to use. This is useful when you don't want to override the global storage objects or when using angular-cache in a browser that doesn't support localStorage or sessionStorage.

$angularCacheFactory('newCache', { localStorageImpl: myLocalStorageImplementation, storageMode: 'localStorage' });

$angularCacheFactory('otherCache', { localStorageImpl: mySessionStorageImplementation, storageMode: 'sessionStorage' });

Note: If angular-cache doesn't detect a global localStorage or sessionStorage and you don't provide a polyfill, then that feature will be disabled. It is up to the developer to provide a polyfill for browsers that don't support localStorage and sessionStorage. Any implementation of localStorage and sessionStorage provided to angular-cache must implement at least the setItem, getItem, and removeItem methods.

maxAge

Set a default maximum lifetime on all items added to the cache. They will be removed aggressively or passively depending on the value of aggressiveDelete (see below). Can be configured on a per-item basis for greater specificity.

$angularCacheFactory('newCache', { maxAge: 36000 });
aggressiveDelete

If true and maxAge is set, then items will be actively deleted right when they expire, otherwise items won't be deleted until they are requested but it is discovered that they have expired and are deleted, resulting in a miss. Can be configured on a per-item basis for greater specificity.

$angularCacheFactory('newCache', {
    maxAge: 36000,
    aggressiveDelete: true
});
cacheFlushInterval

Set the cache to periodically clear itself.

$angularCacheFactory('newCache', { cacheFlushInterval: 57908 });
keySet()

Return the set of keys associated with all current caches owned by $angularCacheFactory.

$angularCacheFactory.keySet();

Return the set of keys associated with all current items in someCache.

$angularCacheFactory.get('someCache').keySet();
keys()

Return an array of the keys associated with all current caches owned by $angularCacheFactory.

$angularCacheFactory.keys();

Return an array of the keys associated with all current items in someCache.

$angularCacheFactory.get('someCache').keys();
setOptions()

Dynamically configure a cache.

$angularCacheFactory.get('someCache').setOptions({ capacity: 4500 });

Status

Version Branch Build status Test Coverage
1.0.0-rc.1 master Build Status Test Coverage
1.0.0-rc.1 develop Build Status
1.0.0-rc.1 all Build Status

Download

Latest Stable Version

Type From drone.io From raw.github.com Size
Production angular-cache-1.0.0-rc.1.min.js angular-cache-1.0.0-rc.1.min.js 3.3 KB
Development angular-cache-1.0.0-rc.1.js angular-cache-1.0.0-rc.1.js 28.7 KB

Install

Install with bower

bower install angular-cache

Include src/angular-cache.js on your web page after angular.js.

Manual install

Get angular-cache from the Download section and include it on your web page after angular.js.

Usage

Load angular-cache

Make sure angular-cache is included on your web page after angular.js.

angular.module('myApp', ['angular-cache']);

See angular-cache

Create a cache

app.service('myService', function ($angularCacheFactory) {

    // create a cache with default settings
    var myCache = $angularCacheFactory('myCache');

    // create an LRU cache with a capacity of 10
    var myLRUCache = $angularCacheFactory('myLRUCache', {
        capacity: 10
    });

    // create a cache whose items have a maximum lifetime of 10 minutes
    var myTimeLimitedCache = $angularCacheFactory('myTimeLimitedCache', {
        maxAge: 600000
    });

    // create a cache that will clear itself every 10 minutes
    var myIntervalCache = $angularCacheFactory('myIntervalCache', {
        cacheFlushInterval: 600000
    });

    // create an cache with all options
    var myAwesomeCache = $angularCacheFactory('myAwesomeCache', {
        capacity: 10, // This cache can only hold 10 items.
        maxAge: 90000, // Items added to this cache expire after 15 minutes.
        cacheFlushInterval: 600000, // This cache will clear itself every hour.
        aggressiveDelete: true, // Items will be deleted from this cache right when they expire.
        storageMode: 'localStorage', // This cache will sync itself with `localStorage`.
        localStorageImpl: myAwesomeLSImple // This cache will use a custom implementation of localStorage.
    });
});

See $angularCacheFactory

Dynamically configure a cache

app.service('myService', function ($angularCacheFactory) {

    // create a cache with default settings
    var cache = $angularCacheFactory('cache', {
        capacity: 100,
        maxAge: 30000
    });

    // Add 50 items here, for example

    cache.info(); // { ..., size: 50, capacity: 100, maxAge: 3000, ... }

    cache.setOptions({
        capacity: 30
    });

    cache.info(); // { ..., size: 30, capacity: 30, maxAge: 3000, ... }
    // notice that only the 30 most recently added items remain in the cache because
    // the capacity was reduced.

    // setting the second parameter to true will cause the cache's configuration to be
    // reset to defaults before the configuration passed into setOptions() is applied to
    // the cache
    cache.setOptions({
        cacheFlushInterval: 5500
    }, true);

    cache.info(); // { ..., size: 30, cacheFlushInterval: 5500,
                  //   capacity: 1.7976931348623157e+308, maxAge: null, ... }
});

See AngularCache#setOptions

Retrieve a cache

app.service('myOtherService', function ($angularCacheFactory) {

    var myCache = $angularCacheFactory.get('myCache');
});

See $angularCacheFactory#get

Retrieve items

myCache.get('someItem'); // { name: 'John Doe' });

// if the item is not in the cache or has expired
myCache.get('someMissingItem'); // undefined

See AngularCache#get

Add items

myCache.put('someItem', { name: 'John Doe' });

myCache.get('someItem'); // { name: 'John Doe' });

Give a specific item a maximum age

// The maxAge given to this item will override the maxAge of the cache, if any was set
myCache.put('someItem', { name: 'John Doe' }, { maxAge: 10000 });

myCache.get('someItem'); // { name: 'John Doe' });

// wait at least ten seconds
setTimeout(function() {

    myCache.get('someItem'); // undefined

}, 15000); // 15 seconds

See AngularCache#put

Remove items

myCache.put('someItem', { name: 'John Doe' });

myCache.remove('someItem');

myCache.get('someItem'); // undefined

See AngularCache#remove

Clear all items

myCache.put('someItem', { name: 'John Doe' });
myCache.put('someOtherItem', { name: 'Sally Jean' });

myCache.removeAll();

myCache.get('someItem'); // undefined
myCache.get('someOtherItem'); // undefined

See AngularCache#removeAll

Destroy a cache

myCache.destroy();

myCache.get('someItem'); // Will throw an error - Don't try to use a cache after destroying it!

$angularCacheFactory.get('myCache'); // undefined

See AngularCache#destroy

Get info about a cache

myCache.info(); // { id: 'myCache', size: 13 }

See AngularCache#info

Changelog

1.0.0-rc.1 - 21 August 2013
  • Added localStorage feature #26, #29
0.9.1 - 03 August 2013
  • Fixed #25
0.9.0 - 03 August 2013
  • Added a changelog #13
  • Added documentation for installing with bower
  • Added ability to set option aggressiveDelete when creating cache and when adding items
  • Cleaned up README.md
  • Switched the demo to use Bootstrap 3
0.8.2 - 09 July 2013
  • Added CONTRIBUTING.md #22
  • Cleaned up meta data in bower.json and package.json
0.8.1 - 09 July 2013
  • Added .jshintrc
  • Cleaned up the docs a bit
  • bower.json now uses src/angular-cache.js instead of the versioned output files #21
  • From now on the tags for the project will be named using semver
0.8.0 - 08 July 2013
  • Added AngularCache.setOptions(), the ability to dynamically change the configuration of a cache #20
  • Added AngularCache.keys(), which returns an array of the keys in a cache #19
  • Added AngularCache.keySet(), which returns a hash of the keys in a cache #19
0.7.2 - June 2013
  • Added angular-cache to bower registry #7
  • Created a working demo #9 #17
  • Fixed the size not being reset to 0 when the cache clears itself #14 #16
  • Added $angularCacheFactory.keys(), which returns an array of the keys (the names of the caches) in $angularCacheFactory #18
  • Added $angularCacheFactory.keySet(), which returns a hash of the keys (the names of the caches) in $angularCacheFactory #18
0.6.1 - June 2013
  • Got the project building on TravisCI
  • Renamed the project to angular-cache #5
0.5.0 - June 2013
  • Added a roadmap to README.md #4
  • Clarify usage documentation #3
  • Wrote unit tests #2
0.4.0 - May 2013
  • Added Grunt build tasks #1

Contributing

Submitting Issues

  1. Make sure you aren't submitting a duplicate issue.
  2. Carefully describe how to reproduce the problem.
  3. Expect prompt feedback.

Submitting Pull Requests

Basic Idea
  • Checkout a new branch based on develop and name it to what you intend to do:
    • Example:
      $ git checkout -b BRANCH_NAME
      
    • Use one branch per fix/feature
    • Prefix your branch name with feature- or fix- appropriately.
  • Make your changes
    • Make sure to provide a spec for unit tests
    • Run your tests with either karma start or grunt test
    • Make sure the tests pass
  • Commit your changes
    • Please provide a git message which explains what you've done
    • Commit to the forked repository
  • Make a pull request
    • Make sure you send the PR to the develop branch
    • Travis CI is watching you!
More details

Read the detailed Contributing Guide

License

MIT License

Copyright (C) 2013 Jason Dobry

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

githalytics.com alpha

About

angular-cache improves upon the capabilities of the $cacheFactory provided by AngularJS.

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published