An open API service indexing awesome lists of open source software.

https://github.com/hakobe/grpc-guruguru

Trial for grpc using some types of languages
https://github.com/hakobe/grpc-guruguru

Last synced: about 1 year ago
JSON representation

Trial for grpc using some types of languages

Awesome Lists containing this project

README

          

# gRPC guruguru
This is a useless gRPC server/client process model. This project is for my gRPC training.

First, a boss process waits for member processes joining. Once all members joined the boss forms cyclic linked list of members by setting next process to each members.

Each member accepts poke messages. When a member receives a poke message, then the member sends a new poke message to its next member process. That means that poke messages loop around the members list infinitely.

![](./guruguru.png)

Member processes are written by each language. These are based on the same proto file as you can see. Used languages are below:

- Go
- Python
- JavaScript(Node.js)
- Ruby
- ...

## How to try

```console
$ make build # for first
$ make up
```

## License

MIT by @hakobe