Dubbo source code analysis practice - the mystery of routing Router

The second keyword in cluster fault tolerance is Router, which means routing in Chinese The front-end routing is different from the back-end routing, but the idea is basically the same In view of the fact that many technical articles have a criticism, that is, they only talk about concepts, but not application scenarios. In fact, Router has i ...

Posted by noaksey2000 on Mon, 25 Nov 2019 09:51:42 -0800

The eighth day of FRR learning -- Distributed symmetric gateway

Distributed symmetric gateway spine configuration bgp evpn configuration router bgp 7677 bgp router-id 192.168.59.130 bgp bestpath as-path multipath-relax neighbor fabric peer-group neighbor fabric remote-as external neighbor 192.168.59.128 peer-group fabric neighbor 192.168.59.129 peer-group fabric ! address-family l2vpn evpn neighb ...

Posted by Bunkermaster on Tue, 19 Nov 2019 01:26:44 -0800

Latest version of IDEA 2019 cracking tutorial (available for windows and MAC)

Advantage: valid until 2099, no accident, this life will be enough Disadvantages: it's a little bit troublesome (as a programmer), but it doesn't matter. It's worth it in order to save trouble in the future The following are the specific steps of crack activation: 1. Download the crack patch file. The path is: http://idea.la ...

Posted by billabong0202 on Mon, 18 Nov 2019 08:24:00 -0800

Automating your git workflow with git-flow

Introduce to you The git flow branch model is believed to have been heard more or less by everyone. Let's start with Zhang Tu Townhouse: It doesn't matter if I don't understand the diagram above (I don't know==), but today I'm talking about the git-flow command line tool developed from this branch model.Just remember a few simple commands to s ...

Posted by lostnucleus on Sun, 17 Nov 2019 18:18:02 -0800

Code specification - Phan static analysis

Phan brief introduction Phan is a PHP static analyzer that tends to minimize false positives. It tries to prove wrong, not right. It looks for FAQs and verifies the type compatibility of various operations when type information is available or can be inferred. Extended installation ast windows mac: pecl install ast pcntl.so mac: compili ...

Posted by chelerblondi on Sat, 16 Nov 2019 12:23:49 -0800

Installing intelliJ IDEA on a Mac

This is the blogger's first article in blog park. New arrival, please give me more advice ~   I'm sure you already know that IntelliJ IDEA is a very comfortable IDE, so I won't talk much about the benefits of IntelliJ IDEA here. (hereinafter referred to as IDEA) According to the installation sequence of bloggers, you may have stepped into some ...

Posted by dkim777 on Thu, 14 Nov 2019 19:47:15 -0800

[Android] Macbook Pro 10.14 (MacOS mobile) compiling Android 9.0 (aosp master) process record

Remember the process of compiling Android source code Experimental environment MacOS Mojave 10.14; RAM 16G SSD hard disk 960G Access to google's Network Environment Step 1: prepare the environment Please refer to the official website: https://source.android.com/setup/build/initializing Prepare disk Disk image mode (25 ...

Posted by saurabhdutta on Tue, 12 Nov 2019 08:48:13 -0800

Talk about the AclClientRPCHook of rocketmq

order This paper mainly studies the AclClientRPCHook of rocketmq RPCHook rocketmq-remoting-4.5.2-sources.jar!/org/apache/rocketmq/remoting/RPCHook.java public interface RPCHook { void doBeforeRequest(final String remoteAddr, final RemotingCommand request); void doAfterResponse(final String remoteAddr, final RemotingCommand request, ...

Posted by webpoet on Sat, 09 Nov 2019 09:48:31 -0800

java implementation of Josephus ring (counting game)

Beginning The company organizes the examination. Once it gets the examination question, it's Joseph Ring in the algorithm. Think carefully about what the teacher forgot before, or do you think about it package basic.gzy; import java.util.Iterator; import java.util.LinkedList; import java.util.Queue; /** * Joseph Ring number game, for example ...

Posted by curtisdw on Tue, 05 Nov 2019 13:26:37 -0800

Day25 class related magic methods

1. Magic properties related to class #Get the internal member structure of an object or class#Get the internal doc ument of an object or class#Get class name function name#Class gets the class to which the current object belongs#Get all the parent classes directly inherited by a class, return tuples   2. reflection #Concept: use string to m ...

Posted by easmith on Sat, 02 Nov 2019 15:21:04 -0700