void BulkBuilder::update_doc(const std::string &index, const std::string &type, const std::string &id, const Json::Object &fields, bool upsert) { createCommand("update", index, type, id); Json::Object updateFields; updateFields.addMemberByKey("doc", fields); updateFields.addMemberByKey("doc_as_upsert", upsert); operations.push_back(updateFields); }
void BulkBuilder::createCommand(const std::string &op, const std::string &index, const std::string &type, const std::string &id = "") { Json::Object command; Json::Object commandParams; if (id != "") { commandParams.addMemberByKey("_id", id); } commandParams.addMemberByKey("_index", index); commandParams.addMemberByKey("_type", type); command.addMemberByKey(op, commandParams); operations.push_back(command); }