Skip to content

Instantly share code, notes, and snippets.

View anthonysim's full-sized avatar

Anthony Sim anthonysim

View GitHub Profile

loader.io Stress Test Results

PROXY GET Requests

http://52.87.183.27:3000/9999999

Requests Total Requests Latency (ms) Error Rate
1000 RPS 60000 1972ms 15.9%
100 RPS 6000 279ms 0%
@anthonysim
anthonysim / pgQueries.js
Last active May 15, 2021 20:45
SDC Postgres Queries Test
const { pool } = require('../db/postgres/db');
// POSTGRES QUERIES TEST
(async () => {
// Connection
await pool.connect((err, client, release) => {
if (err) {
return console.error('Error acquiring client', err.stack);
}