├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── configs ├── drtmh.xml ├── freshness.xml ├── gindex.xml ├── hello-world.xml ├── motiv-log-ft.xml ├── motiv-log-gts.xml ├── motiv-log-para.xml ├── motiv-log-unlimit.xml ├── read-scan-block.xml ├── read-scan-chain.xml ├── read-scan-col.xml ├── read-scan-rs.xml ├── read-scan-vegito.xml ├── vegito-all-olap.xml ├── vegito-all-oltp.xml └── vegito-htap.xml ├── docs └── get-started.md ├── run.sh ├── scripts ├── count_line.sh ├── eval-oltp.sh ├── fresh-eval.py ├── run-fresh.py ├── run2.py ├── run_index_test.py ├── run_test3.py ├── run_util.py └── sync_to_server.sh ├── src ├── all.h ├── app │ ├── ch │ │ ├── ch_config.cc │ │ ├── ch_config.h │ │ ├── ch_loader.cc │ │ ├── ch_log_cleaner.cc │ │ ├── ch_log_cleaner.h │ │ ├── ch_main.cc │ │ ├── ch_mixin.h │ │ ├── ch_query.cc │ │ ├── ch_query.h │ │ ├── ch_query │ │ │ ├── ch_query_01.cc │ │ │ ├── ch_query_02.cc │ │ │ ├── ch_query_03.cc │ │ │ ├── ch_query_04.cc │ │ │ ├── ch_query_05.cc │ │ │ ├── ch_query_06.cc │ │ │ ├── ch_query_07.cc │ │ │ ├── ch_query_08.cc │ │ │ ├── ch_query_09.cc │ │ │ ├── ch_query_10.cc │ │ │ ├── ch_query_11.cc │ │ │ ├── ch_query_12.cc │ │ │ ├── ch_query_13.cc │ │ │ ├── ch_query_14.cc │ │ │ ├── ch_query_15.cc │ │ │ ├── ch_query_16.cc │ │ │ ├── ch_query_17.cc │ │ │ ├── ch_query_18.cc │ │ │ ├── ch_query_19.cc │ │ │ ├── ch_query_20.cc │ │ │ ├── ch_query_21.cc │ │ │ ├── ch_query_22.cc │ │ │ └── ch_query_timer.h │ │ ├── ch_schema.h │ │ ├── ch_worker.cc │ │ ├── ch_worker.h │ │ └── micro_query │ │ │ ├── ch_freshness.cc │ │ │ ├── col_ol_update.cc │ │ │ ├── col_static.cc │ │ │ ├── col_update.cc │ │ │ ├── graph.cc │ │ │ └── index.cc │ └── micro_index │ │ ├── mindex_config.cc │ │ ├── mindex_config.h │ │ ├── mindex_main.cc │ │ └── mindex_main.h ├── arch.h ├── backup_store │ ├── backup_db.cc │ ├── backup_db.h │ ├── backup_index.h │ ├── backup_index_hash.cc │ ├── backup_index_hash.h │ ├── backup_store.h │ ├── backup_store_col.cc │ ├── backup_store_col.h │ ├── backup_store_col2.cc │ ├── backup_store_col2.h │ ├── backup_store_kv.cc │ ├── backup_store_kv.h │ ├── backup_store_row.cc │ ├── backup_store_row.h │ ├── backup_tree.h │ └── kv_template.h ├── config.h ├── custom_config.h ├── db │ ├── db_logger.cc │ ├── db_logger.h │ ├── db_one_remote.cc │ ├── db_one_remote.h │ ├── db_statistics_helper.h │ ├── forkset.cc │ ├── forkset.h │ ├── remote_set.cc │ ├── remote_set.h │ ├── remote_set_structs.h │ ├── req_buf_allocator.h │ └── txs │ │ ├── db_farm.cc │ │ ├── db_farm.h │ │ ├── db_farm_rpc.cc │ │ ├── dbrad.cc │ │ ├── dbrad.h │ │ ├── dbrad_rpc_handler.cc │ │ ├── dbsi.cc │ │ ├── dbsi.h │ │ ├── dbsi_rpc_handler.cc │ │ ├── dbtx.cc │ │ ├── dbtx.h │ │ ├── dbtx_remote.cc │ │ ├── dbtx_rpc_handler.cc │ │ ├── log_ts_manager.cc │ │ ├── log_ts_manager.h │ │ ├── si_ts_manager.cc │ │ ├── si_ts_manager.h │ │ └── tx_handler.h ├── framework │ ├── backup_worker.cc │ ├── backup_worker.h │ ├── bench_listener.cc │ ├── bench_listener.h │ ├── bench_loader.cc │ ├── bench_loader.h │ ├── bench_query.cc │ ├── bench_query.h │ ├── bench_reporter.cc │ ├── bench_reporter.h │ ├── bench_runner.cc │ ├── bench_runner.h │ ├── bench_worker.cc │ ├── bench_worker.h │ ├── framework.cc │ ├── framework.h │ ├── framework_cfg.cc │ ├── framework_cfg.h │ ├── log_area.cc │ ├── log_area.h │ ├── log_cleaner.cc │ ├── log_cleaner.h │ ├── log_listener.cc │ ├── log_listener.h │ ├── main.cc │ ├── rdma_config.cc │ ├── rdma_config.h │ ├── rdma_sched.cc │ ├── rdma_sched.h │ ├── routine.cc │ ├── routine.h │ ├── rpc.cc │ ├── rpc.h │ ├── rworker.cc │ ├── rworker.h │ ├── utils │ │ ├── inline_str.h │ │ ├── macros.h │ │ ├── serializer.h │ │ ├── thread.cc │ │ ├── thread.h │ │ ├── varint.cc │ │ └── varint.h │ ├── view_manager.cc │ └── view_manager.h ├── memstore │ ├── memdb.cc │ ├── memdb.h │ ├── memstore.h │ ├── memstore_bplustree.cc │ ├── memstore_bplustree.h │ ├── memstore_hash.cc │ ├── memstore_hash.h │ ├── memstore_tree.cc │ ├── memstore_tree.h │ ├── memstore_uint64bplustree.cc │ ├── memstore_uint64bplustree.h │ ├── rdma_chainhash.h │ ├── rdma_cuckoohash.h │ └── rdma_hashext.h ├── port │ ├── README │ ├── atomic-template.h │ ├── atomic.h │ ├── atomic_pointer.h │ ├── port.h │ ├── port_example.h │ ├── port_posix.cc │ ├── port_posix.h │ └── thread_annotations.h ├── structure │ ├── queue.h │ ├── stx │ │ ├── btree │ │ ├── btree.dox │ │ ├── btree.h │ │ ├── btree_map │ │ ├── btree_map.h │ │ ├── btree_multimap │ │ ├── btree_multimap.h │ │ ├── btree_multiset │ │ ├── btree_multiset.h │ │ ├── btree_set │ │ └── btree_set.h │ └── vector.h └── util │ ├── fast_random.h │ ├── mapped_log.cc │ ├── mapped_log.h │ ├── mutexlock.h │ ├── rtm.cc │ ├── rtm.h │ ├── spinlock.h │ ├── temp_log.h │ ├── timer.h │ ├── txprofile.h │ ├── util.cc │ └── util.h └── third_party └── rdma_lib ├── include ├── msg_handler.h ├── ralloc.h ├── rdma_header.h ├── rdmaio.h ├── ring_imm_msg.h ├── ring_msg.h ├── simple_map.h └── ud_msg.h ├── ralloc ├── .indent.pro ├── COPYING ├── Makefile ├── README ├── include-x86_64 │ ├── atomic.h │ ├── bitops.h │ ├── cpu.h │ ├── double-list.h │ └── queue.h ├── new_delete.cpp ├── ssmalloc.c └── ssmalloc.h ├── rdmatest ├── CMakeLists.txt ├── TestConfigXml.h ├── all.h ├── config.xml ├── copy.sh ├── db_statistics_helper.h ├── get_device.cc ├── hybrid_test │ └── test.cc ├── main.cc ├── mem_test │ └── test.cc ├── multi_post_read_test │ └── test.cc ├── one_sided_test │ └── test.cc ├── ralloc_test.cc ├── rc_ping_test │ └── test.cc ├── rc_send_recv │ ├── testframework.cc │ └── testframework.cfg ├── ring_msg_test │ └── test.cc ├── run-machine.sh ├── run-servers.sh ├── run.py ├── run_util.py ├── sync.sh ├── uc_send_recv │ ├── testframework.cc │ └── testframework.cfg ├── ud_msg_test │ └── test.cc ├── ud_post_doorbell │ └── test.cc ├── ud_post_single │ ├── testframework.cc │ └── testframework.cfg ├── ud_scale_out │ ├── testframework.cc │ └── testframework.cfg └── ud_send_recv │ ├── testframework.cc │ └── testframework.cfg └── src ├── helper_func.hpp ├── pre_connector.hpp ├── qp.cc ├── rc.cc ├── rdma_ctrl.cc ├── ring_imm_msg.cc ├── ring_msg.cc ├── uc.cc ├── ud.cc ├── ud_msg.cc └── utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/README.md -------------------------------------------------------------------------------- /configs/drtmh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/drtmh.xml -------------------------------------------------------------------------------- /configs/freshness.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/freshness.xml -------------------------------------------------------------------------------- /configs/gindex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/gindex.xml -------------------------------------------------------------------------------- /configs/hello-world.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/hello-world.xml -------------------------------------------------------------------------------- /configs/motiv-log-ft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/motiv-log-ft.xml -------------------------------------------------------------------------------- /configs/motiv-log-gts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/motiv-log-gts.xml -------------------------------------------------------------------------------- /configs/motiv-log-para.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/motiv-log-para.xml -------------------------------------------------------------------------------- /configs/motiv-log-unlimit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/motiv-log-unlimit.xml -------------------------------------------------------------------------------- /configs/read-scan-block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/read-scan-block.xml -------------------------------------------------------------------------------- /configs/read-scan-chain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/read-scan-chain.xml -------------------------------------------------------------------------------- /configs/read-scan-col.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/read-scan-col.xml -------------------------------------------------------------------------------- /configs/read-scan-rs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/read-scan-rs.xml -------------------------------------------------------------------------------- /configs/read-scan-vegito.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/read-scan-vegito.xml -------------------------------------------------------------------------------- /configs/vegito-all-olap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/vegito-all-olap.xml -------------------------------------------------------------------------------- /configs/vegito-all-oltp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/vegito-all-oltp.xml -------------------------------------------------------------------------------- /configs/vegito-htap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/configs/vegito-htap.xml -------------------------------------------------------------------------------- /docs/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/docs/get-started.md -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/run.sh -------------------------------------------------------------------------------- /scripts/count_line.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/scripts/count_line.sh -------------------------------------------------------------------------------- /scripts/eval-oltp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/scripts/eval-oltp.sh -------------------------------------------------------------------------------- /scripts/fresh-eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/scripts/fresh-eval.py -------------------------------------------------------------------------------- /scripts/run-fresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/scripts/run-fresh.py -------------------------------------------------------------------------------- /scripts/run2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/scripts/run2.py -------------------------------------------------------------------------------- /scripts/run_index_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/scripts/run_index_test.py -------------------------------------------------------------------------------- /scripts/run_test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/scripts/run_test3.py -------------------------------------------------------------------------------- /scripts/run_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/scripts/run_util.py -------------------------------------------------------------------------------- /scripts/sync_to_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/scripts/sync_to_server.sh -------------------------------------------------------------------------------- /src/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/all.h -------------------------------------------------------------------------------- /src/app/ch/ch_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_config.cc -------------------------------------------------------------------------------- /src/app/ch/ch_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_config.h -------------------------------------------------------------------------------- /src/app/ch/ch_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_loader.cc -------------------------------------------------------------------------------- /src/app/ch/ch_log_cleaner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_log_cleaner.cc -------------------------------------------------------------------------------- /src/app/ch/ch_log_cleaner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_log_cleaner.h -------------------------------------------------------------------------------- /src/app/ch/ch_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_main.cc -------------------------------------------------------------------------------- /src/app/ch/ch_mixin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_mixin.h -------------------------------------------------------------------------------- /src/app/ch/ch_query.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query.h -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_01.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_01.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_02.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_02.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_03.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_03.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_04.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_04.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_05.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_05.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_06.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_06.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_07.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_07.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_08.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_08.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_09.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_09.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_10.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_10.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_11.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_11.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_12.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_12.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_13.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_13.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_14.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_14.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_15.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_15.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_16.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_16.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_17.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_17.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_18.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_18.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_19.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_19.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_20.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_20.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_21.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_21.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_22.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_22.cc -------------------------------------------------------------------------------- /src/app/ch/ch_query/ch_query_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_query/ch_query_timer.h -------------------------------------------------------------------------------- /src/app/ch/ch_schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_schema.h -------------------------------------------------------------------------------- /src/app/ch/ch_worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_worker.cc -------------------------------------------------------------------------------- /src/app/ch/ch_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/ch_worker.h -------------------------------------------------------------------------------- /src/app/ch/micro_query/ch_freshness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/micro_query/ch_freshness.cc -------------------------------------------------------------------------------- /src/app/ch/micro_query/col_ol_update.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/micro_query/col_ol_update.cc -------------------------------------------------------------------------------- /src/app/ch/micro_query/col_static.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/micro_query/col_static.cc -------------------------------------------------------------------------------- /src/app/ch/micro_query/col_update.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/micro_query/col_update.cc -------------------------------------------------------------------------------- /src/app/ch/micro_query/graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/micro_query/graph.cc -------------------------------------------------------------------------------- /src/app/ch/micro_query/index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/ch/micro_query/index.cc -------------------------------------------------------------------------------- /src/app/micro_index/mindex_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/micro_index/mindex_config.cc -------------------------------------------------------------------------------- /src/app/micro_index/mindex_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/micro_index/mindex_config.h -------------------------------------------------------------------------------- /src/app/micro_index/mindex_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/micro_index/mindex_main.cc -------------------------------------------------------------------------------- /src/app/micro_index/mindex_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/app/micro_index/mindex_main.h -------------------------------------------------------------------------------- /src/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/arch.h -------------------------------------------------------------------------------- /src/backup_store/backup_db.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_db.cc -------------------------------------------------------------------------------- /src/backup_store/backup_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_db.h -------------------------------------------------------------------------------- /src/backup_store/backup_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_index.h -------------------------------------------------------------------------------- /src/backup_store/backup_index_hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_index_hash.cc -------------------------------------------------------------------------------- /src/backup_store/backup_index_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_index_hash.h -------------------------------------------------------------------------------- /src/backup_store/backup_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_store.h -------------------------------------------------------------------------------- /src/backup_store/backup_store_col.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_store_col.cc -------------------------------------------------------------------------------- /src/backup_store/backup_store_col.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_store_col.h -------------------------------------------------------------------------------- /src/backup_store/backup_store_col2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_store_col2.cc -------------------------------------------------------------------------------- /src/backup_store/backup_store_col2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_store_col2.h -------------------------------------------------------------------------------- /src/backup_store/backup_store_kv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_store_kv.cc -------------------------------------------------------------------------------- /src/backup_store/backup_store_kv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_store_kv.h -------------------------------------------------------------------------------- /src/backup_store/backup_store_row.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_store_row.cc -------------------------------------------------------------------------------- /src/backup_store/backup_store_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_store_row.h -------------------------------------------------------------------------------- /src/backup_store/backup_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/backup_tree.h -------------------------------------------------------------------------------- /src/backup_store/kv_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/backup_store/kv_template.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/config.h -------------------------------------------------------------------------------- /src/custom_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/custom_config.h -------------------------------------------------------------------------------- /src/db/db_logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/db_logger.cc -------------------------------------------------------------------------------- /src/db/db_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/db_logger.h -------------------------------------------------------------------------------- /src/db/db_one_remote.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/db_one_remote.cc -------------------------------------------------------------------------------- /src/db/db_one_remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/db_one_remote.h -------------------------------------------------------------------------------- /src/db/db_statistics_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/db_statistics_helper.h -------------------------------------------------------------------------------- /src/db/forkset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/forkset.cc -------------------------------------------------------------------------------- /src/db/forkset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/forkset.h -------------------------------------------------------------------------------- /src/db/remote_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/remote_set.cc -------------------------------------------------------------------------------- /src/db/remote_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/remote_set.h -------------------------------------------------------------------------------- /src/db/remote_set_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/remote_set_structs.h -------------------------------------------------------------------------------- /src/db/req_buf_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/req_buf_allocator.h -------------------------------------------------------------------------------- /src/db/txs/db_farm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/db_farm.cc -------------------------------------------------------------------------------- /src/db/txs/db_farm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/db_farm.h -------------------------------------------------------------------------------- /src/db/txs/db_farm_rpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/db_farm_rpc.cc -------------------------------------------------------------------------------- /src/db/txs/dbrad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/dbrad.cc -------------------------------------------------------------------------------- /src/db/txs/dbrad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/dbrad.h -------------------------------------------------------------------------------- /src/db/txs/dbrad_rpc_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/dbrad_rpc_handler.cc -------------------------------------------------------------------------------- /src/db/txs/dbsi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/dbsi.cc -------------------------------------------------------------------------------- /src/db/txs/dbsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/dbsi.h -------------------------------------------------------------------------------- /src/db/txs/dbsi_rpc_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/dbsi_rpc_handler.cc -------------------------------------------------------------------------------- /src/db/txs/dbtx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/dbtx.cc -------------------------------------------------------------------------------- /src/db/txs/dbtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/dbtx.h -------------------------------------------------------------------------------- /src/db/txs/dbtx_remote.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/dbtx_remote.cc -------------------------------------------------------------------------------- /src/db/txs/dbtx_rpc_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/dbtx_rpc_handler.cc -------------------------------------------------------------------------------- /src/db/txs/log_ts_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/log_ts_manager.cc -------------------------------------------------------------------------------- /src/db/txs/log_ts_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/log_ts_manager.h -------------------------------------------------------------------------------- /src/db/txs/si_ts_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/si_ts_manager.cc -------------------------------------------------------------------------------- /src/db/txs/si_ts_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/si_ts_manager.h -------------------------------------------------------------------------------- /src/db/txs/tx_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/db/txs/tx_handler.h -------------------------------------------------------------------------------- /src/framework/backup_worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/backup_worker.cc -------------------------------------------------------------------------------- /src/framework/backup_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/backup_worker.h -------------------------------------------------------------------------------- /src/framework/bench_listener.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/bench_listener.cc -------------------------------------------------------------------------------- /src/framework/bench_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/bench_listener.h -------------------------------------------------------------------------------- /src/framework/bench_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/bench_loader.cc -------------------------------------------------------------------------------- /src/framework/bench_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/bench_loader.h -------------------------------------------------------------------------------- /src/framework/bench_query.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/bench_query.cc -------------------------------------------------------------------------------- /src/framework/bench_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/bench_query.h -------------------------------------------------------------------------------- /src/framework/bench_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/bench_reporter.cc -------------------------------------------------------------------------------- /src/framework/bench_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/bench_reporter.h -------------------------------------------------------------------------------- /src/framework/bench_runner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/bench_runner.cc -------------------------------------------------------------------------------- /src/framework/bench_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/bench_runner.h -------------------------------------------------------------------------------- /src/framework/bench_worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/bench_worker.cc -------------------------------------------------------------------------------- /src/framework/bench_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/bench_worker.h -------------------------------------------------------------------------------- /src/framework/framework.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/framework.cc -------------------------------------------------------------------------------- /src/framework/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/framework.h -------------------------------------------------------------------------------- /src/framework/framework_cfg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/framework_cfg.cc -------------------------------------------------------------------------------- /src/framework/framework_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/framework_cfg.h -------------------------------------------------------------------------------- /src/framework/log_area.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/log_area.cc -------------------------------------------------------------------------------- /src/framework/log_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/log_area.h -------------------------------------------------------------------------------- /src/framework/log_cleaner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/log_cleaner.cc -------------------------------------------------------------------------------- /src/framework/log_cleaner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/log_cleaner.h -------------------------------------------------------------------------------- /src/framework/log_listener.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/log_listener.cc -------------------------------------------------------------------------------- /src/framework/log_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/log_listener.h -------------------------------------------------------------------------------- /src/framework/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/main.cc -------------------------------------------------------------------------------- /src/framework/rdma_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/rdma_config.cc -------------------------------------------------------------------------------- /src/framework/rdma_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/rdma_config.h -------------------------------------------------------------------------------- /src/framework/rdma_sched.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/rdma_sched.cc -------------------------------------------------------------------------------- /src/framework/rdma_sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/rdma_sched.h -------------------------------------------------------------------------------- /src/framework/routine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/routine.cc -------------------------------------------------------------------------------- /src/framework/routine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/routine.h -------------------------------------------------------------------------------- /src/framework/rpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/rpc.cc -------------------------------------------------------------------------------- /src/framework/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/rpc.h -------------------------------------------------------------------------------- /src/framework/rworker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/rworker.cc -------------------------------------------------------------------------------- /src/framework/rworker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/rworker.h -------------------------------------------------------------------------------- /src/framework/utils/inline_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/utils/inline_str.h -------------------------------------------------------------------------------- /src/framework/utils/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/utils/macros.h -------------------------------------------------------------------------------- /src/framework/utils/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/utils/serializer.h -------------------------------------------------------------------------------- /src/framework/utils/thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/utils/thread.cc -------------------------------------------------------------------------------- /src/framework/utils/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/utils/thread.h -------------------------------------------------------------------------------- /src/framework/utils/varint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/utils/varint.cc -------------------------------------------------------------------------------- /src/framework/utils/varint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/utils/varint.h -------------------------------------------------------------------------------- /src/framework/view_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/view_manager.cc -------------------------------------------------------------------------------- /src/framework/view_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/framework/view_manager.h -------------------------------------------------------------------------------- /src/memstore/memdb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/memstore/memdb.cc -------------------------------------------------------------------------------- /src/memstore/memdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/memstore/memdb.h -------------------------------------------------------------------------------- /src/memstore/memstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/memstore/memstore.h -------------------------------------------------------------------------------- /src/memstore/memstore_bplustree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/memstore/memstore_bplustree.cc -------------------------------------------------------------------------------- /src/memstore/memstore_bplustree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/memstore/memstore_bplustree.h -------------------------------------------------------------------------------- /src/memstore/memstore_hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/memstore/memstore_hash.cc -------------------------------------------------------------------------------- /src/memstore/memstore_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/memstore/memstore_hash.h -------------------------------------------------------------------------------- /src/memstore/memstore_tree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/memstore/memstore_tree.cc -------------------------------------------------------------------------------- /src/memstore/memstore_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/memstore/memstore_tree.h -------------------------------------------------------------------------------- /src/memstore/memstore_uint64bplustree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/memstore/memstore_uint64bplustree.cc -------------------------------------------------------------------------------- /src/memstore/memstore_uint64bplustree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/memstore/memstore_uint64bplustree.h -------------------------------------------------------------------------------- /src/memstore/rdma_chainhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/memstore/rdma_chainhash.h -------------------------------------------------------------------------------- /src/memstore/rdma_cuckoohash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/memstore/rdma_cuckoohash.h -------------------------------------------------------------------------------- /src/memstore/rdma_hashext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/memstore/rdma_hashext.h -------------------------------------------------------------------------------- /src/port/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/port/README -------------------------------------------------------------------------------- /src/port/atomic-template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/port/atomic-template.h -------------------------------------------------------------------------------- /src/port/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/port/atomic.h -------------------------------------------------------------------------------- /src/port/atomic_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/port/atomic_pointer.h -------------------------------------------------------------------------------- /src/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/port/port.h -------------------------------------------------------------------------------- /src/port/port_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/port/port_example.h -------------------------------------------------------------------------------- /src/port/port_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/port/port_posix.cc -------------------------------------------------------------------------------- /src/port/port_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/port/port_posix.h -------------------------------------------------------------------------------- /src/port/thread_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/port/thread_annotations.h -------------------------------------------------------------------------------- /src/structure/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/structure/queue.h -------------------------------------------------------------------------------- /src/structure/stx/btree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/structure/stx/btree -------------------------------------------------------------------------------- /src/structure/stx/btree.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/structure/stx/btree.dox -------------------------------------------------------------------------------- /src/structure/stx/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/structure/stx/btree.h -------------------------------------------------------------------------------- /src/structure/stx/btree_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/structure/stx/btree_map -------------------------------------------------------------------------------- /src/structure/stx/btree_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/structure/stx/btree_map.h -------------------------------------------------------------------------------- /src/structure/stx/btree_multimap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/structure/stx/btree_multimap -------------------------------------------------------------------------------- /src/structure/stx/btree_multimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/structure/stx/btree_multimap.h -------------------------------------------------------------------------------- /src/structure/stx/btree_multiset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/structure/stx/btree_multiset -------------------------------------------------------------------------------- /src/structure/stx/btree_multiset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/structure/stx/btree_multiset.h -------------------------------------------------------------------------------- /src/structure/stx/btree_set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/structure/stx/btree_set -------------------------------------------------------------------------------- /src/structure/stx/btree_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/structure/stx/btree_set.h -------------------------------------------------------------------------------- /src/structure/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/structure/vector.h -------------------------------------------------------------------------------- /src/util/fast_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/util/fast_random.h -------------------------------------------------------------------------------- /src/util/mapped_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/util/mapped_log.cc -------------------------------------------------------------------------------- /src/util/mapped_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/util/mapped_log.h -------------------------------------------------------------------------------- /src/util/mutexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/util/mutexlock.h -------------------------------------------------------------------------------- /src/util/rtm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/util/rtm.cc -------------------------------------------------------------------------------- /src/util/rtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/util/rtm.h -------------------------------------------------------------------------------- /src/util/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/util/spinlock.h -------------------------------------------------------------------------------- /src/util/temp_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/util/temp_log.h -------------------------------------------------------------------------------- /src/util/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/util/timer.h -------------------------------------------------------------------------------- /src/util/txprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/util/txprofile.h -------------------------------------------------------------------------------- /src/util/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/util/util.cc -------------------------------------------------------------------------------- /src/util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/src/util/util.h -------------------------------------------------------------------------------- /third_party/rdma_lib/include/msg_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/include/msg_handler.h -------------------------------------------------------------------------------- /third_party/rdma_lib/include/ralloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/include/ralloc.h -------------------------------------------------------------------------------- /third_party/rdma_lib/include/rdma_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/include/rdma_header.h -------------------------------------------------------------------------------- /third_party/rdma_lib/include/rdmaio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/include/rdmaio.h -------------------------------------------------------------------------------- /third_party/rdma_lib/include/ring_imm_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/include/ring_imm_msg.h -------------------------------------------------------------------------------- /third_party/rdma_lib/include/ring_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/include/ring_msg.h -------------------------------------------------------------------------------- /third_party/rdma_lib/include/simple_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/include/simple_map.h -------------------------------------------------------------------------------- /third_party/rdma_lib/include/ud_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/include/ud_msg.h -------------------------------------------------------------------------------- /third_party/rdma_lib/ralloc/.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/ralloc/.indent.pro -------------------------------------------------------------------------------- /third_party/rdma_lib/ralloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/ralloc/COPYING -------------------------------------------------------------------------------- /third_party/rdma_lib/ralloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/ralloc/Makefile -------------------------------------------------------------------------------- /third_party/rdma_lib/ralloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/ralloc/README -------------------------------------------------------------------------------- /third_party/rdma_lib/ralloc/include-x86_64/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/ralloc/include-x86_64/atomic.h -------------------------------------------------------------------------------- /third_party/rdma_lib/ralloc/include-x86_64/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/ralloc/include-x86_64/bitops.h -------------------------------------------------------------------------------- /third_party/rdma_lib/ralloc/include-x86_64/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/ralloc/include-x86_64/cpu.h -------------------------------------------------------------------------------- /third_party/rdma_lib/ralloc/include-x86_64/double-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/ralloc/include-x86_64/double-list.h -------------------------------------------------------------------------------- /third_party/rdma_lib/ralloc/include-x86_64/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/ralloc/include-x86_64/queue.h -------------------------------------------------------------------------------- /third_party/rdma_lib/ralloc/new_delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/ralloc/new_delete.cpp -------------------------------------------------------------------------------- /third_party/rdma_lib/ralloc/ssmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/ralloc/ssmalloc.c -------------------------------------------------------------------------------- /third_party/rdma_lib/ralloc/ssmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/ralloc/ssmalloc.h -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/TestConfigXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/TestConfigXml.h -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/all.h -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/config.xml -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/copy.sh -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/db_statistics_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/db_statistics_helper.h -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/get_device.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/get_device.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/hybrid_test/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/hybrid_test/test.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/main.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/mem_test/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/mem_test/test.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/multi_post_read_test/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/multi_post_read_test/test.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/one_sided_test/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/one_sided_test/test.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/ralloc_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/ralloc_test.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/rc_ping_test/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/rc_ping_test/test.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/rc_send_recv/testframework.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/rc_send_recv/testframework.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/rc_send_recv/testframework.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/rc_send_recv/testframework.cfg -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/ring_msg_test/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/ring_msg_test/test.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/run-machine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/run-machine.sh -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/run-servers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/run-servers.sh -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/run.py -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/run_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/run_util.py -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/sync.sh -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/uc_send_recv/testframework.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/uc_send_recv/testframework.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/uc_send_recv/testframework.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/uc_send_recv/testframework.cfg -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/ud_msg_test/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/ud_msg_test/test.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/ud_post_doorbell/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/ud_post_doorbell/test.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/ud_post_single/testframework.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/ud_post_single/testframework.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/ud_post_single/testframework.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/ud_post_single/testframework.cfg -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/ud_scale_out/testframework.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/ud_scale_out/testframework.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/ud_scale_out/testframework.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/ud_scale_out/testframework.cfg -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/ud_send_recv/testframework.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/ud_send_recv/testframework.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/rdmatest/ud_send_recv/testframework.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/rdmatest/ud_send_recv/testframework.cfg -------------------------------------------------------------------------------- /third_party/rdma_lib/src/helper_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/src/helper_func.hpp -------------------------------------------------------------------------------- /third_party/rdma_lib/src/pre_connector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/src/pre_connector.hpp -------------------------------------------------------------------------------- /third_party/rdma_lib/src/qp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/src/qp.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/src/rc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/src/rc.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/src/rdma_ctrl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/src/rdma_ctrl.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/src/ring_imm_msg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/src/ring_imm_msg.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/src/ring_msg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/src/ring_msg.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/src/uc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/src/uc.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/src/ud.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/src/ud.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/src/ud_msg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/src/ud_msg.cc -------------------------------------------------------------------------------- /third_party/rdma_lib/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/vegito/HEAD/third_party/rdma_lib/src/utils.h --------------------------------------------------------------------------------