17 lines
428 B
Org Mode
17 lines
428 B
Org Mode
* grpc-routing-microservice
|
|
** Build with Docker
|
|
#+begin_src sh
|
|
docker build . -t routing
|
|
#+end_src
|
|
** Run with Docker
|
|
#+begin_src sh
|
|
docker run -it routing
|
|
#+end_src
|
|
** Benchmark (from within the container)
|
|
#+begin_src sh
|
|
python benchmark.py N_RUNS
|
|
#+end_src =N_RUNS= denotes the number of time a random routing request will be
|
|
made. Runtimes are then averaged and returned by the script.
|
|
|