1
我正在使用couchbase lite移動iOS框架進行緩存。有沒有辦法在iOS中使用couchbase lite進行批量插入或批量更新?couchbase lite mobile中的批量插入/更新iOS
我正在使用couchbase lite移動iOS框架進行緩存。有沒有辦法在iOS中使用couchbase lite進行批量插入或批量更新?couchbase lite mobile中的批量插入/更新iOS
在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.