Skip to content

Commit

Permalink
Update 0005_fr_optimized_bulk_creation_factory_boy.md
Browse files Browse the repository at this point in the history
  • Loading branch information
SebCorbin authored Nov 15, 2024
1 parent 123f3ff commit 11e61db
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions content/0005_fr_optimized_bulk_creation_factory_boy.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Title : Factory-Boy : Optimiser la création en masse
Date : 2024-09-12 16:42
Id : 0005
Slug : optimiser-creation-en-masse-factory_boy
Lang : fr
Category : développement
Tags : django, tests
Summary : Accélérer la création de grands ensembles de données avec factory_boy
Title: Factory-Boy : Optimiser la création en masse
Date: 2024-09-12 16:42
Id: 0005
Slug: optimiser-creation-en-masse-factory_boy
Lang: fr
Category: développement
Tags: django, tests
Summary: Accélérer la création de grands ensembles de données avec factory_boy


# Le problème
Expand Down Expand Up @@ -76,4 +76,4 @@ obj_list = NotificationFactory.simple_generate_batch(
for pos, obj in enumerate(obj_list):
obj.contact_id = contact_list[pos].pk
Notification.objects.bulk_create(obj_list)
```
```

0 comments on commit 11e61db

Please sign in to comment.