Browse Community
Help
Log In
Responses(3)
Solutions(0)
JasonCwik
281 Posts
1
March 8th, 2016 09:00
Unfortunately, the Atmos protocol does not have a bulk delete operation, so the EsuApi interface does not implement it.
Your best bet to quickly delete would be to do it in a parallel block. EsuApi is thread-safe, so you don't need to worry about synchronization.
e.g.
Parallel.ForEach(ids, id=> esu.DeleteObject(id));
CeyCey
5 Posts
0
March 9th, 2016 00:00
Thanks for your reply, one more thing that I want to learn about EMC is transaction, does it support transaction ?
March 9th, 2016 10:00
No, due to the distributed nature of Atmos, there is no support for transactions.
Dell Support Resources
View All
Top
JasonCwik
281 Posts
1
March 8th, 2016 09:00
Unfortunately, the Atmos protocol does not have a bulk delete operation, so the EsuApi interface does not implement it.
Your best bet to quickly delete would be to do it in a parallel block. EsuApi is thread-safe, so you don't need to worry about synchronization.
e.g.
CeyCey
5 Posts
0
March 9th, 2016 00:00
Thanks for your reply, one more thing that I want to learn about EMC is transaction, does it support transaction ?
JasonCwik
281 Posts
0
March 9th, 2016 10:00
No, due to the distributed nature of Atmos, there is no support for transactions.