1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

update benchmarks

This commit is contained in:
leibale
2021-12-07 11:01:42 -05:00
parent 12173e1cd7
commit b68f79538c
17 changed files with 248 additions and 91 deletions

21
benchmark/lib/ping/v3.js Normal file
View File

@@ -0,0 +1,21 @@
import { createClient } from 'redis-v3';
import { once } from 'events';
import { promisify } from 'util';
export default async (host) => {
const client = createClient({ host }),
pingAsync = promisify(client.ping).bind(client),
quitAsync = promisify(client.quit).bind(client);
await once(client, 'connect');
return {
benchmark() {
return pingAsync();
},
teardown() {
return quitAsync();
}
};
};