Skip to content
#

gRPC

grpc logo

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.

Here are 3,420 public repositories matching this topic...

insomnia
sfabriece
sfabriece commented Jan 18, 2021

Is your feature request related to a problem? Please describe.
I'm always frustrated when Insomnia does not remember my last used URL importing routes from a URL

Describe the solution you'd like
Insomnia should remember the last used URL when importing routes. It's unlikely that it'll change often.

Describe alternatives you've considered
None

Additional context
![image

grpc-gateway
tonic

Surging is a micro-service engine that provides a lightweight, high-performance, modular RPC request pipeline. The service engine supports http, TCP, WS,Grpc, Thrift,Mqtt, UDP, and DNS protocols. It uses ZooKeeper and Consul as a registry, and integrates it. Hash, random, polling, Fair Polling as a load balancing algorithm, built-in service governance to ensure reliable RPC communication, the engine contains Diagnostic, link tracking for protocol and middleware calls, and integration SkyWalking Distributed APM

  • Updated Nov 26, 2020
  • C#
armeria
trustin
trustin commented Dec 31, 2020

A user can easily serve a static file in an annotated service as follows:

@Get("...")
@Head("...")
HttpResponse getFile(ServiceRequestContext ctx) {
    return HttpFile.of(...).asService().serve(ctx, ctx.request());
}

However, it'd be even nicer if a user can do this:

@Get("...")
@Head("...")
HttpFile getFile() {
    return HttpFile.of(...);
}

Created by Google

Released August 2016

Latest release 4 days ago

Repository
grpc/grpc
Website
grpc.io
Wikipedia
Wikipedia