Is there anyway to speed up inserts like bulk or batch process?
Here is upsert code.
bucket = cluster.openBucket(databaseName, "");
JsonDocument document = JsonDocument.create(id, jsonObject);
bucket.upsert(document);
Thanks,
Rama
Is there anyway to speed up inserts like bulk or batch process?
Here is upsert code.
bucket = cluster.openBucket(databaseName, "");
JsonDocument document = JsonDocument.create(id, jsonObject);
bucket.upsert(document);
Thanks,
Rama