1.0.3 • Published 3 years ago

pg-redis-nodejs v1.0.3

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
3 years ago

pg-redis

Cache your postgres queries in NodeJs using redis

npm install pg-redis-nodejs

Usage

const PgRedis = require('pg-redis-nodejs');
// or
import PgRedis from 'pg-redis';

const pgRedis = new PgRedis(
    pgConnection,
    redisConnection,
    {
        expired: 3600, // optional
        prefix: 'pg-redis.' // optional
    }
);

const rows = await pgRedis.query('SELECT id FROM user WHERE id = $1', [666]);
1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago