Closed HeyItsJs closed 5 years ago
The grpc endpoint for batch operations is ready. Need to get that in client.
Here's how the batch API looks for javascript:
const batch = db.beginBatch(); batch.add(db.insert(col).docs(...docs)); batch.add(db.update(col).where(whereClause).set()) // Apply batch batch.apply().then(res => ...).catch(ex => ...)
Same needs to be ported for Java
Needs to solve #3 before this
The grpc endpoint for batch operations is ready. Need to get that in client.
Here's how the batch API looks for javascript:
Same needs to be ported for Java