Skip to content

Instantly share code, notes, and snippets.

View duythinht's full-sized avatar
💭
I may be slow to respond.

Thinh Tran duythinht

💭
I may be slow to respond.
View GitHub Profile
# Configuration for Alacritty, the GPU enhanced terminal emulator
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty it self.
env:
# TERM env customization.
#
# If this property is not set, alacritty will set it to xterm-256color.
@duythinht
duythinht / gRPC.md
Last active May 28, 2020 12:01
gRPC

Why gRPC

gRPC is a modern open source high performance RPC framework that can run in any environment. It can efficiently connect services in and across data centers with pluggable support for load balancing, tracing, health checking and authentication. It is also applicable in last mile of distributed computing to connect devices, mobile applications and browsers to backend services.

  • Simple service definition - Define your service using Protocol Buffers, a powerful binary serialization toolset and language
  • Works across languages and platforms - Automatically generate idiomatic client and server stubs for your service in a variety of languages and platforms
  • Start quickly and scale * Install runtime and dev environments with a single line and also scale to millions of RPCs per second with the framework
  • Bi-directional streaming and integrated auth - Bi-directional streaming and fully integrated pluggable authentication with HTTP/2-based transport

Ref: https://grpc.io/about/