From 07fbdd1ceaf2f1c93f3db4227183415e73524687 Mon Sep 17 00:00:00 2001 From: Qiaolin Yu Date: Tue, 2 Jul 2024 12:53:44 -0700 Subject: [PATCH] Update README.md --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6427dd3..a9a1e9a 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,12 @@ tmp_options.compaction_service = std::make_shared( - Run Control Plane and CSA ```shell -cd $build +git clone git@github.com:asu-idi/CaaS-LSM.git +cd CaaS-LSM +mkdir build +cd build +cmake .. +make -j100 ./procp_server #run Control Plane server ./csa_server #run CSA server ``` @@ -46,8 +51,13 @@ cd $build - Run CSA ``` +git clone git@github.com:asu-idi/CaaS-LSM.git +cd CaaS-LSM git checkout disaggre-rocksdb -cd $build +mkdir build +cd build +cmake .. +make -j100 ./csa_server # The name is the same, but the function of CSA is different with that of CaaS-LSM ```