Changes between Version 7 and Version 8 of Ticket #35904
- Timestamp:
- Dec 6, 2024, 5:10:08 AM (2 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35904 – Description
v7 v8 9 9 Benchmark results 10 10 =============== 11 test is to insert 1000 records from a single fixture11 test to insert 1000 records from a single fixture (using the Article model on Sqlite) 12 12 current: 0.116s 13 13 with --force_insert: 0.066s 14 with --bulk_create: 0.01 s14 with --bulk_create: 0.010s 15 15 16 test isto insert 10000 records from a single fixture16 test to insert 10000 records from a single fixture 17 17 current: 1.07s 18 18 with --force_insert: 0.39s 19 with --bulk_create: 0.010s 19 with --bulk_create: 0.104s 20 21 I expect larger models to have a more significant improvement even. 20 22 21 23 22 24 23 24