Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 508 Bytes

README.md

File metadata and controls

46 lines (34 loc) · 508 Bytes

Benchmarking

  1. Deploy data
./common/deploy_data.sh

C++

cd cpp
./setup-env.sh
make

# Run the server
make run_server

# Run the client
make run_client

Python

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]

Java

curl -o- https://get.docker.com | bash
cd java/
docker build -t bench .

# Run server
./run_server.sh

# Run client
./run_client.sh