The proper way to completely delete hundred of topics 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 лайков