Quickly understand load balancing

Quickly understand load balancing 1, Introduction to load balancing Learn more and pay attention code Zatan ! 1.1. Challenges faced by large websites Large websites have to face the challenges of huge number of users, high concurrency, massive data and so on. In order to improve the overall performance of the system, vertical expansion ...

Added by FuriousIrishman on Thu, 24 Feb 2022 08:13:46 +0200

Three Ideas of Code Design

1. Combination instead of inheritance 1. Inheritance Recently, Demo, a unity game of killing towers, was playing. Due to the limited level of individuals, the class inheritance level in the game was too deep, and the same attribute was held by many different parallel objects. As follows: Then the problem is: (1) Code modification is cumberso ...

Added by philvia on Wed, 23 Feb 2022 19:12:43 +0200

Android: simple component architecture steps

Tip: after the article is written, the directory can be generated automatically. Please refer to the help document on the right for how to generate it preface Review the steps of Android component development architecture 1, Create Business component layer The Module created by the business component layer adopts phone & table, w ...

Added by EvilCoatHanger on Sun, 20 Feb 2022 07:21:50 +0200

Introduction to embedded MCU programming -- Architecture

Write in the front: it's purely personal opinion. If you don't agree, you're right! If it helps you, congratulations. Introduction to embedded MCU programming - Thinking Following the above, thinking is the foundation. On the basis of thinking, it will be easier to understand the structure. If you haven't read the previous article, you can ta ...

Added by mr_armageddon on Sun, 20 Feb 2022 00:35:46 +0200

Actual combat of springcloud microservice architecture: merchant management microservice design

Business management micro service design Merchant management microservice is an independent RESTAPI application that provides functions of merchant information management, merchant authority management and menu resource management through interface services. The development of merchant management micro service is implemented in the merchant R ...

Added by Flames on Tue, 15 Feb 2022 09:15:53 +0200

Actual combat of micro Service Architecture: business management background and SSO design, SSO client design

SSO client design Next, the implementation of SSO client security authentication is encapsulated through the module merchant security, so that each client application accessing SSO can refer to it. Project management configuration for security certification The project management of SSO client security authentication uses the following d ...

Added by plaggypig on Tue, 15 Feb 2022 09:04:39 +0200

Handwritten simple version of React to thoroughly understand the fiber architecture

The biggest difference between before and after React 16 is that 16 introduces fiber and implements hooks based on fiber. I mention fiber all day. What is fiber? What is its relationship with vdom? Instead of looking at various explanations, it's better to write a fiber version of React. When you can realize it, you must fully understand it. ...

Added by chadbobb on Tue, 15 Feb 2022 04:15:21 +0200

[practical problems] - three practices of Bloom filter: handwriting, redistribution and Guava

We have already talked about the principle of Bloom filter [practical problem] - bloom filter for cache penetration (1) , we all understand that it works like this, so how do we use bloom filter in general? If you do it yourself, how do you do it? Bloom filter Read the definition again: Bloom Filter was proposed by Burton Howard Bloom in ...

Added by artizan on Thu, 10 Feb 2022 16:45:16 +0200

Microservice architecture learning SpringBoot integration Druid

Microservice architecture learning SpringBoot integration Druid Introduction to Druid A large part of Java programs need to operate the database. In order to improve the performance, they have to use the database connection pool when operating the database. Druid is a database connection pool implementation on Alibaba's open source platf ...

Added by phpn00bf4life on Thu, 10 Feb 2022 00:41:58 +0200

JSP & three tier architecture

Chapter 1 - EL expression 1.1 EL expression overview What is an El expression Expression Language: Expression Language, jsp2 Built in JSP after 0 Purpose: in order to make the JSP easier to write, the value (the value stored in the domain object) is simpler. (instead of script <%% >) EL syntax ${el expression} Purpose of EL express ...

Added by Wakab on Sat, 05 Feb 2022 14:39:02 +0200