在couchbase lite移动iOS中批量插入/更新

时间:2014-10-16 14:58:35

标签: ios couchbase-lite

我正在使用couchbase lite移动iOS框架进行缓存。有没有办法在iOS中的couchbase lite中进行批量插入或批量更新?

1 个答案:

答案 0 :(得分:0)

在v1.x中,您可以在CBLDatabase上使用inTransaction。根据规格 -

Runs the block within a transaction. If the block returns NO, the transaction is rolled back.
    Use this when performing bulk write operations like multiple inserts/updates; it saves the 
    overhead of multiple SQLite commits, greatly improving performance.