[RRQMSocket.RPC] C# advanced usage settings of RRQMRPC based on TCP protocol
1, Preface
Notes to this section
Before learning this section, you must be familiar with the creation of TcpRpcParser parser and TcpRpcClient client (or its derived classes, such as file transfer) in RRQM. If you are not familiar with it, please understand it in the following links.
[RRQMSocket.RPC] C# create an RPC that supports ref a ...
Posted by nextman on Thu, 25 Nov 2021 22:42:20 -0800
gRPC call based on memory communication
Apache Dubbo has the communication mode of injvm, which can avoid the delay caused by the network and does not occupy the local port. It is a more convenient RPC communication mode for testing and local verification.Recently, I saw the code of containerd and found that it has similar requirements. Then I investigated whether gRPC has a similar ...
Posted by LexHammer on Wed, 24 Nov 2021 14:05:22 -0800
Tars | Part 4 Subset routing rule service analysis and source code exploration
preface
Through the mid-term report and exchange meeting, the author has a deep understanding of Subset business process; At the same time, I also have an understanding of some misunderstandings in the early stage. This article is to update Subset business analysis and correct misunderstandings.
1. Subset is not load balancing
Bri ...
Posted by rajatr on Tue, 23 Nov 2021 15:58:34 -0800
Process Base Points
Catalog
1. Definition of process
2. State and Transition of the Process
3. Process Control Block
4. Process number
5. Process Creation--fork Function
6. Process Creation
7. exit and _ exit function
8. Recycling of processes
1. wait function
2. waitpid function
9. Orphan Process
10. Zombie Process
1. Definition of p ...
Posted by welsh_sponger on Sun, 24 Oct 2021 09:36:04 -0700
Getting started and using Java RMI
Java RMI
background
When different JVM needs to be called each other, how to make the method of calling JVMB in JVMA as local, this is the RMI-Remote Method Invoke.
Different JVMs can refer to different JVMs on the same machine or value JVMs on different machines
Basic principles
As for stubs and skeletons, I think they are difficult t ...
Posted by christo16 on Fri, 01 Oct 2021 17:38:46 -0700