We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73f6e6b commit ccf0662Copy full SHA for ccf0662
benchmark/lib/ping/v4.js
@@ -1,7 +1,11 @@
1
import { createClient } from '@node-redis/client';
2
3
export default async (host) => {
4
- const client = createClient({ host });
+ const client = createClient({
5
+ socket: {
6
+ host
7
+ }
8
+ });
9
10
await client.connect();
11
benchmark/lib/set-get-delete-string/v4.js
export default async (host, { randomString }) => {
0 commit comments