* Create RedisClientPool `RedisClientPool` using this client as a prototype
(options?: Partial<RedisPoolOptions>)
| 1126 | * Create {@link RedisClientPool `RedisClientPool`} using this client as a prototype |
| 1127 | */ |
| 1128 | createPool(options?: Partial<RedisPoolOptions>) { |
| 1129 | return RedisClientPool.create( |
| 1130 | this._self.#options, |
| 1131 | options |
| 1132 | ); |
| 1133 | } |
| 1134 | |
| 1135 | duplicate< |
| 1136 | _M extends RedisModules = M, |
no test coverage detected