A drop in for 'postgres-date' package that is few times faster.
yarn install @sixfold/fast-postgres-date-parser
import { types } from 'pg';
import { parsePostgresTimestamp} from '@sixfold/fast-postgres-date-parser';
types.setTypeParser(types.builtins.TIMESTAMPTZ, parsePostgresTimestamp);
types.setTypeParser(types.builtins.TIMESTAMP, parsePostgresTimestamp);
The project also contains a benchmark, you can run with yarn benchmark
Latest benchmark against [email protected]
postgres-date:
1 309 014 ops/s, ±0.88% | slowest, 62.11% slower
faster-date-parser:
3 455 121 ops/s, ±2.20% | fastest