Data Guard -- theoretical explanation
1.Data Guard
Chapter 1 detailed reading - Portal
2 detailed explanation of DG services – Redo Transport Services
Chapter 2 detailed reading - Portal
3 DG Services details – Apply Services
3.1 Apply Services
The application service can automatically apply the received redo data in the standby database, so as to maintain the syn ...
Posted by azaidi on Mon, 14 Feb 2022 03:01:37 +0100
Rust homemade memory cheater
preface
Cheat Engine is a game focused cheater. It can be used to scan the memory in the game and allow them to be modified. This tool may not have been heard of, but the famous Jinshan Ranger must have been used by everyone more than ten years ago.
By chance, I saw a project written by Rust. I liked his concise grammar and gathered the advan ...
Posted by Bobulous on Mon, 14 Feb 2022 02:59:42 +0100
Spring mvc03: RestFul style and Controller
Controller controller
The controller is responsible for providing the behavior of accessing the application, which is usually implemented by interface definition or annotation definition. The controller is responsible for parsing the user's request and transforming it into a model. A spring controller can be contained in more than one sprin ...
Posted by Cinds on Mon, 14 Feb 2022 02:58:12 +0100
Algorithm and tree structure
Tree structure: tree structure is a data structure that describes nonlinear hierarchical relationships.
A tree is a set of n data nodes, which contains a root node. Under the root node, there are some non intersecting subsets, which are subtrees of the root node. Basic characteristics of tree structure: (1) In a tree structure, there is only ...
Posted by blackwidow on Mon, 14 Feb 2022 02:56:02 +0100
react source code analysis 6 Legacy mode and concurrent mode
react source code analysis 6 Legacy mode and concurrent modeVideo Explanation (efficient learning): Enter learningreact start modeReact has three modes to enter the entry of the main function. We can access it from the official document of react Use Concurrent mode (experimental) Three modes are compared:legacy mode: reactdom render(<App /&g ...
Posted by mcirl2 on Mon, 14 Feb 2022 02:46:19 +0100
35 spring MVC (Introduction to ssm and microservices, temporary)
1. Spring MVC overview
1.1 spring MVC concept
Spring MVC is also called Spring web mvc. Spring is a built-in MVC framework in spring 3 Publish after 0. Spring MVC framework solves the common problems in WEB Development (parameter receiving, file uploading, form verification, etc.), and it is simple to use and has nothing to do with spring Sea ...
Posted by shelbytll on Mon, 14 Feb 2022 02:43:06 +0100
Explore React synthetic events
Explore React synthetic events 1, What is a composite event React synthetic event is an event object that can simulate all the capabilities of native DOM events, that is, the cross browser wrapper of browser native events. It defines synthetic events according to W3C specification, is compatible with all browsers, and has the same interface as ...
Posted by Lashiec on Mon, 14 Feb 2022 02:34:56 +0100
STM32 SPI obtains the angle data of magnetic angle sensor AS5048A
STM32 SPI obtains the angle data of magnetic angle sensor AS5048A
AS5048A is a 14 bit precision magnetic angle detection sensor with SPI interface. In fact, the stability accuracy is only 12 bits, that is, when the detection environment is static, the last two bits of data output are changing and not constant. AS5048A can be used for rotation ...
Posted by cloudbase on Mon, 14 Feb 2022 02:12:39 +0100
Application and principle of ThreadPoolExecutor thread pool
1. Custom thread pool
Thread is a kind of system resource. Every time it is created, it will consume some system resources. If a new thread is created for each task in a high concurrency scenario, it will occupy a lot of system space and even cause the problem of memory overflow. Moreover, the number of threads cannot be too large. If there ...
Posted by Hoangsta on Mon, 14 Feb 2022 02:04:24 +0100
[design mode] simple factory mode
Wechat search: Menon StayUp Home address: https://gozhuyinglong.github.io Source code sharing: https://github.com/gozhuyinglong/blog-demos
Simple Factory Pattern is a simple implementation of factory pattern. It belongs to creation pattern. There is only one "factory" class in the Simple Factory Pattern, which can create diffe ...
Posted by foyer on Mon, 14 Feb 2022 02:03:05 +0100