Socket
Socket
Sign inDemoInstall

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


Version published
Weekly downloads
6
increased by500%
Maintainers
1
Weekly downloads
 
Created
Source

clache

Build Status Coverage Status

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

Example

function find(cb) {
  return cb(null, { id: 1, name: 'evan' })
}

var id = '1234'
clache.wrap('user_'+id, find, function(err, results) {
  if (err) throw err
  console.log(results)
})
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.setex()

Set val for the given key with ttl

Params
NameType(s)Description
keyStringThe key
ttlNumberThe ttl
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 29 Jul 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