Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cashcow

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cashcow

cashcow is a cache fetcher that pools consumers and minimises memory usage

  • 1.0.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by50%
Maintainers
1
Weekly downloads
 
Created
Source

cashcow

A smart cached value fetcher that...

  • pools consumers while fetching to avoid doing multiple trips
  • guarantees only one instance of resource is ever held in memory
  • satisfies consumers early if already fetching

cashcow is not prescriptive about what cache your using, simply provide it with two functions:

  • get(key) a function that gets value from cache and returns a promise for that value
  • populate(key) a function that populates the cache, returning a promise that resolves when complete

installation

npm install cashcow

usage

var cashcow = require('cashcow')
var cowFetch = cashcow(get, populate)

cowFetch('mything') // populates cache then returns value from cache
cowFetch('mything') // combined with previous fetch
cowFetch('mything').then(function (thing) {
  // cache has been populated
  cowFetch('mything') // gets from cache
  cowFetch('mything') // combined with previous fetch
  cowFetch('mything').then(function (thing) {
    cowFetch('mything') // requests again from cache
  })
})

function get (key) {
  return myCustomCache.get(key)
}

function populate (key) {
  return fetchFromSource(key).then(function (val) {
    return myCustomCache.set(key, val)
  })
}

run tests

npm test

Keywords

FAQs

Package last updated on 08 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc