This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Prisma
prisma.io
did:plc:m6mbn4cko4m6vyynh7q675df
Looping over create() looks harmless. But each call sends a separate query.
Local test inserting 50 records:
- create() in a loop → 803ms
- createMany() → 129ms
~6x faster with one line change.
Use createMany() for batch inserts.
2026-01-20T17:00:11.732Z