kube-proxy source code parsing

kubernetes Off-line Installation Package, only three steps kube-proxy source code parsing ipvs has higher performance and stability than iptables mode. This paper focuses on the source code analysis of iptables mode. If you want to understand the principle of iptables mode, you can refer to its implementation. There is no difference in architec ...

Added by plaggypig on Wed, 07 Aug 2019 10:49:26 +0300

kube-proxy source code analysis

kubernetes Off-line Installation Package, only three steps kube-proxy source code parsing ipvs has higher performance and stability than iptables mode. This paper focuses on the source code analysis of iptables mode. If you want to understand the principle of iptables mode, you can refer to its implementation. There is no difference in archit ...

Added by mattyj10 on Wed, 07 Aug 2019 09:56:44 +0300

Introduction to Java Network Programming

Java Network Programming 1. Overview computer network It refers to a computer system that connects multiple computers with independent functions in different geographical locations and their external equipment through communication lines and realizes resource sharing and information transmission u ...

Added by pirri on Mon, 05 Aug 2019 10:00:32 +0300

Java Learning - Preliminary understanding of reflection and dynamic proxies

"This is a summary of video material and video compilation for Chuanzhuan Big Data Course"   1 Reflection The attributes, methods, constructors, etc. in a class object can be retrieved by reflection 1 package thread.reflect; 2 3 import org.junit.Before; 4 import org.junit.Test; 5 6 import java.lang.reflect ...

Added by soulroll on Sun, 04 Aug 2019 02:45:27 +0300

Vue-3 props, $emit, slot, render, JSX and createElement

Vue-3 props, $emit, slot, render, JSX and createElement Props and $emit When using Vue to develop a project, we divide the content of the project into modules, but sometimes there is data interaction between modules. In real project development, father-son and brother components need to pass values ...

Added by flyersun on Thu, 01 Aug 2019 08:48:09 +0300

Windows socket program demonstration

Demonstrated the socket program under Linux, look at the socket program under Windows. Similarly, server.cpp is server-side code and client is client-side code. Server-side code server.cpp: #include <stdio.h> #include <winsock2.h> #Pragma comment (lib,'ws2_32.lib') / / load ws2_32.dll int m ...

Added by eagleweb on Wed, 31 Jul 2019 07:53:17 +0300

Selectect and select or multiplexing to create socket links

After learning, we understand that i\o blocks I o, non-blocking I o, I O multiplexing, asynchronous I o, an I O operat io n is actually putting data into the kernel cache, and from this copy down, the user actually only calls this interface I/O communication is actually a user invoking a kernel interfac ...

Added by Ne.OnZ on Tue, 30 Jul 2019 04:12:24 +0300

[I/O multiplexing] poll system call

Article Directory [1] Preface [2] poll system call function prototype [3] Program example [4] Advantages and disadvantages of poll [1] Preface poll is essentially the same as select, it copies the user's incoming array into the kernel space, then queries each fd for the corresponding device stat ...

Added by Alk3m1st on Sat, 20 Jul 2019 04:08:53 +0300

[I/O multiplexing] select system call

Article Directory [1] Function prototype Meaning of each parameter [3] Simple understanding of fd_set structure [4] Characteristics of select model The Procedure of Using the select Function [6] Program example Disadvantages of select [1] Function prototype #include<sys/select.h> int selec ...

Added by WM_Programmer_noob on Sat, 20 Jul 2019 04:02:43 +0300

Deep Understanding of Android Instant Run Operating Mechanism

Instant Run Instant Run, a new operating mechanism in Android studio 2.0, can significantly reduce the time you spend building and deploying current applications when you code, develop, test, or debug. The popular explanation is that when you change your code in Android Studio, Instant Run can quickly show you the effect of your changes. Before ...

Added by netbros on Tue, 16 Jul 2019 23:56:58 +0300