> On Oct 27, 2014, at 9:30 AM, James Norman <[email protected]> wrote: > > I tested this with CB Lite Android 1.0.3 and saw the same performance > numbers, 1/4 second per update of document at 50K documents. This seems > awfully slow for a database, especially at only 50K records. Does the IOS > version have similar performance metrics? Any ideas on how to address this > would be appreciated.
I don't have exact numbers handy, but the iOS version does on the order of 1,000 inserts/sec on an iPhone 5. Just to ask the obvious: you do wrap the whole batch of updates/deletes in a transaction, right? Otherwise they will be slow, simply because each operation will be its own transaction, and SQLite transactions have a pretty high overhead. —Jens -- You received this message because you are subscribed to the Google Groups "Couchbase Mobile" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/mobile-couchbase/46087D66-A162-4F9F-9808-8DDFC34E8533%40couchbase.com. For more options, visit https://groups.google.com/d/optout.
