flecks/packages/redis/src/create-client.js

13 lines
231 B
JavaScript
Raw Normal View History

2022-02-25 04:58:08 -06:00
import {createClient} from 'redis';
2022-02-28 05:16:24 -06:00
export default (flecks, opts = {}) => {
const {
host,
port,
} = flecks.get('@flecks/redis/server');
return createClient({
url: `redis://${host}:${port}`,
2022-02-25 04:58:08 -06:00
...opts,
2022-02-28 05:16:24 -06:00
});
};