我正在使用couchbase lite移动iOS框架进行缓存。有没有办法在iOS中的couchbase lite中进行批量插入或批量更新?
答案 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.