@asyncio/redis

A high performance async/await native redis client library.


Keywords
redis, database, asyncio, async/await
License
MIT
Install
npm install @asyncio/redis@1.0.0

Documentation

@asyncio/redis

A high performance async/await native redis client library.

Fully type-checked, fully documented, no compilation needed.

Supports Node 8.X LTS.

Install

Install with NPM:

    npm install @asyncio/redis

Usage

const redis = require('@asyncio/redis');

async function main() {
  const conn = await reddis.connect();

  await conn.hset('hash', 'field', 'value');

}
main();