KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
grpc-echo
★ 9
Open GitHub ↗
Simple gRPC echo example
Download README (.md)
Explore Similar Repositories
cpeptools
:
No description available.
MinimalistMobileFpsController
:
Minimalist first person controller for mobile games
2DIncompressibleNavierStokesSolver
:
This repository provides code solving the 2D Incompressible Navier-Stokes equations numerically
Temporal-Link-Prediction-and-Community-Detection
:
Final Project for Analysis of Network Data (CSE416a).
RimWorld-FrameRateControl
:
RimWorld mod that disables VSync and allows you to control the max FPS
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
grpc-echo
?
Download (.md)
# grpc-echo This is a simple gRPC Client/Server daemon. Use `go mod vendor` to download the dependencies. There are several commands in Makefile: - `make pb`: generate proto-buff codes, you may don't need it since I have already generated them unless you want to add new commands in the echo service. - `make build`: build the package - `make server`: run a *server* listens on localhost:5001 - `make client`: run a *client* connects to localhost:5001 - `make server-1`: run a *server* listens on localhost:5001 - `make server-2`: run a *server* listens on localhost:5002 - `make client-12`: run a *client* connect to localhost:5001 and localhost:5002 - `make servers 1201,1202,1203`: run a *server* listens on these ports - `make clients localhost:1201,localhost:1202,localhost:1203`: run a *client* connect to these servers