2007-02-11 18:52:26 UTC
On the `code examples` page you have one example in which you delete a set of records using iteration. This seems like a hack to me -- imagine you have a set of 200 records, and if you try to delete each one of them individually, this means you will spawn 200 queries. It is much better to use `batch` operations, where with one query you delete all the records that you want. Are you planning support for such batch opperations - delete and update ?