- ORM:
python3.12 orm-tester.py sqlite 100000- 100000 additions took 27251.844822ms
- Raw SQL:
python3.12 sqlite-tester.py 100000- With ID column: 100000 additions took 6531.315638ms
- Without ID column: 100000 additions took 6026.203085ms
docker run -e POSTGRES_PASSWORD=random -e POSTGRES_USER=postgres -e POSTGRES_DB=test-db -p 5432:5432 postgres:18-alpine- ORM:
python3.12 orm-tester.py postgres 100000