Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove inter-process communication doc #19753

Merged
merged 1 commit into from
Sep 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 0 additions & 95 deletions aspnetcore/grpc/interprocess.md

This file was deleted.

6 changes: 0 additions & 6 deletions aspnetcore/grpc/performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,6 @@ There are many L7 proxies available. Some options are:

::: moniker range=">= aspnetcore-5.0"

## Inter-process communication

gRPC calls between a client and service are usually sent over TCP sockets. TCP is great for communicating across a network, but [inter-process communication (IPC)](https://wikipedia.org/wiki/Inter-process_communication) is more efficient when the client and service are on the same machine.

Consider using a transport like Unix domain sockets or named pipes for gRPC calls between processes on the same machine. For more information, see <xref:grpc/interprocess>.

## Keep alive pings

Keep alive pings can be used to keep HTTP/2 connections alive during periods of inactivity. Having an existing HTTP/2 connection ready when an app resumes activity allows for the initial gRPC calls to be made quickly, without a delay caused by the connection being reestablished.
Expand Down
2 changes: 0 additions & 2 deletions aspnetcore/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -720,8 +720,6 @@
uid: grpc/clientfactory
- name: Use gRPC in browser apps
uid: grpc/browser
- name: Inter-process communication with gRPC
uid: grpc/interprocess
- name: Create JSON Web APIs from gRPC
uid: grpc/httpapi
- name: Configuration
Expand Down
1 change: 0 additions & 1 deletion aspnetcore/whats-new/2020-08.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ Welcome to what's new in the ASP.NET Core docs from August 1, 2020 through Augus
### New articles

- <xref:grpc/httpapi> - Add Create JSON Web APIs from gRPC doc
- <xref:grpc/interprocess> - gRPC and inter-process communication
- <xref:grpc/performance> - gRPC performance best practices
- <xref:grpc/protobuf> - Add Protobuf guide for .NET
- <xref:grpc/services> - Add Create gRPC services doc
Expand Down