- Deploy data
./common/deploy_data.sh
cd cpp
./setup-env.sh
make
# Run the server
make run_server
# Run the client
make run_client
cd python
pip install -r req.txt
# Run the server
python3 server.py [host] [port]
# Run the client
python3 client.py [host] [port] [dataset path]
curl -o- https://get.docker.com | bash
cd java/
docker build -t bench .
# Run server
./run_server.sh
# Run client
./run_client.sh