redis#RedisClient TypeScript Examples

The following examples show how to use redis#RedisClient. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: database.ts    From Adachi-BOT with MIT License 5 votes vote down vote up
public readonly client: RedisClient;
Example #2
Source File: publisher.ts    From crypto-crawlers with Apache License 2.0 5 votes vote down vote up
private client: RedisClient;
Example #3
Source File: redis.db.service.ts    From tradingview-alerts-processor with MIT License 5 votes vote down vote up
defaultRedisDbClient = (): WrappedNodeRedisClient =>
  createNodeRedisClient(new RedisClient({ port: Number(PORT), host: HOST }))