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

abstract-cache-redis

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

abstract-cache-redis

An abstract-cache compliant client targeting Redis

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6K
increased by67.58%
Maintainers
1
Weekly downloads
 
Created
Source

abstract-cache-redis

This module provides a cache client that is compliant with the abstract-cache protocol. This client implements the await style of the protocol.

In addition to the API mandated by the protocol, the client exposes keys, scan, scanStream, disconnect and quit methods. These map to the ioredis methods of the same names. The disconnect and quit methods are only useful if you create the client with connection configuration instead of an already connected Redis client.

Example

// Create a client that uses ioredis to connect to `localhost:6379`.
const client = require('abstract-cache-redis')({ioredis: {}})

client.set('foo', 'foo', 1000)
  .then(() => client.has('foo'))
  .then(console.log) // true
  .then(() => client.quit())
  .catch(console.error)

client.set('foo', 'foo', 1000)
  .then(() => client.keys('fo*'))
  .then(console.log) // [ 'foo' ]
  .then(() => client.quit())
  .catch(console.error)

Options

The client factory accepts the an object with the following properties:

  • client: An already connected instance of ioredis.
  • ioredis: A regular ioredis configuration object.

Notes:

  1. client takes precedence to ioredis.
  2. At least one of the client or ioredis properties must be supplied.
  3. The user is responsible for closing the connection.

Tests

In order to run the tests for this project a local instance of Reis must be running on port 6379. A docker-compose.yml is included to facilitate this:

$ docker-compose -d up
$ tap test/*.test.js

npm test automates the above.

License

MIT License

Keywords

FAQs

Package last updated on 13 Apr 2021

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