예제 #1
0
void RAMPFastExecutor::get(const Key& key, const Timestamp& ts_req) {

    if (ts_req.is_empty()) {
	this->com->send(MessageType::RESULT, this->table->get_latest_item(key));
    } else {
	this->com->send(MessageType::RESULT, this->table->get_item_by_ver(key, ts_req));
    }
}