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

clache

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clache

pooled redis caching made easy

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

clache

Author

Evan Lucas

License

MIT

Installation

$ npm install --save clache

Tests

$ npm test

Coverage

$ npm run cover

API

clache()

Contructor

Example

var opts = {
  ttl: 100 // in seconds
, host: '127.0.0.1'
, port: 6379
, password: null
}
var cache = new clache(opts)
Params
NameType(s)Description
optsObjectThe options object

clache.wrap()

Wrap an asynchronous function and cache it

Params
NameType(s)Description
keyStringThe key
workFunctionThe work function
cbFunctionfunction(err, res)

clache.set()

Set val for the given key

Params
NameType(s)Description
keyStringThe key
valString, Number, Boolean, Array, ObjectThe value
cbFunctionfunction(err, res)

clache.get()

Get the value for the given key

Params
NameType(s)Description
keyStringThe key
cbFunctionfunction(err, res)

clache.del()

Deletes the value for the given key

Params
NameType(s)Description
keyStringThe key
cbFunctionfunction(err, res)

Keywords

FAQs

Package last updated on 05 Jun 2014

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