First method (foreach) do a Job for 100 Items in 47sec, next round takes a 59sec, next round takes 190sec. After fifth round you don't want to wait that the operation finish.
Second method have the same problem, after some time it takes more than 10sec to delete an Item.
Is there some better method doing it?
I have also tried BulkManager, and this tool have the same problem.
ExecutionTimeout is set inside web.config.
Application is build with "release" configurations.
Bulk Delete Operation
I have to delete more the 1000 Items (Nodes without children). I have tried to do it with
I have tried also to delete all content of specified ContentType
Both methods are realy slow.
First method (foreach) do a Job for 100 Items in 47sec, next round takes a 59sec, next round takes 190sec. After fifth round you don't want to wait that the operation finish.
Second method have the same problem, after some time it takes more than 10sec to delete an Item.
Is there some better method doing it? I have also tried BulkManager, and this tool have the same problem. ExecutionTimeout is set inside web.config. Application is build with "release" configurations.
Hello,
Deleting is always slow, but I'm not sure if it should get slower. You could try to report an issue here: http://issues.umbraco.org/newissue
Jeroen
Hi
I have executed delete method without debugging it. Execution time (written in log) stay constant and deletes approximately 3 nodes per second.
Obviously some weird magic happens when I'm deleting and debugging the solution in the same time.
I'm still not happy with the performance but I can live with it. Some kind of Bulk Create/Delete/Insert methods would be great.
is working on a reply...