La bonne façon de supprimer complètement des centaines de sujets via Rails ?

I would do this in batches of say 10, building up to batches of 200 depending on how long it takes.

Topic.where(category_id: XX).limit(20).destroy_all

It does cascade all stuff it needs so it could take a while.

7 « J'aime »