[KingbaseES]sys_ Detailed explanation of dump logical backup tool
KingbaseES logical backup and restore tool provides online backup and restore function at database object level. Backup objects include:
database pattern surface view constraint jurisdiction trigger function sequence
The output format of logical backup includes:
Binary SQL script
In addition, for table data, it also supports the e ...
Added by bammerman on Sat, 12 Feb 2022 10:25:07 +0200
"Sure enough fresh" e-commerce project (44) - use Logstash to automatically synchronize database content to ES
1. How to synchronize database with ES
We all know that ES is a search engine. Its search speed is much faster than that of the database. How to synchronize the contents of the database to es? The middleware Logstash is needed at this time.
Logstash is an open source data collection engine with real-time pipeline function. Logstash can ...
Added by shwanky on Sat, 12 Feb 2022 04:21:11 +0200
[mysql] bitwise operator
1. Bitwise operator
Bitwise operators are operators that evaluate on binary numbers. The bit operator first converts the operand into a binary number, then performs a bit operation, and finally changes the calculation result from binary to decimal. MySQL supports the following bitwise operators:
1.1 bitwise and operators
The bitwise ...
Added by gszauer on Sat, 12 Feb 2022 02:07:02 +0200
Core content of MySQL execution plan
Core content of MySQL execution plan
As we all know, mysql performs query optimization when executing queries. To put it simply, when executing, first generate an execution plan based on cost and rule optimization, and then execute the query according to the execution plan. This article mainly introduces the meaning of each output item of EXPL ...
Added by _OwNeD.YoU_ on Fri, 11 Feb 2022 20:16:21 +0200
[tcallusdb knowledge base] restful API For generic table - [PB] FieldGetRecord introduction
[tcallusdb knowledge base] restfulapi2 0 for generic table - [PB] FieldGetRecord introductionbrief introductionThe corresponding field selected in the auto increment record only works on numeric type fields. It is often used in scenes such as players' experience value increase and level increase to avoid checking and updating first and reduce n ...
Added by frikus on Fri, 11 Feb 2022 17:14:30 +0200
[tcallusdb knowledge base] restful API For list table - [PB] [PB] ListGetRecord introduce
[tcallusdb knowledge base] restfulapi2 0 for list table - [Pb] listgetrecord2 0 Introductionbrief introductionQuery the record of the specified subscript under the corresponding Key in the List PB table.Index: Specifies the subscript of the record to return.POST http://{Tcaplus_REST_URL}Request syntaxHttp request#Tencent cloud console RESTful E ...
Added by jamesm6162 on Fri, 11 Feb 2022 15:27:49 +0200
MySQL 7: MySQL indexing practice
1, Prepare test environment
1.1. Create data table
/* Employee table */
CREATE TABLE `emp` (
`id` int(8) NOT NULL AUTO_INCREMENT,
`name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
`job` varchar(9) NOT NULL DEFAULT '',
`hiredate` date NOT NULL, /* Entry date */
`sal_grade` int(8) NOT NULL,
`age` ...
Added by DirtySnipe on Fri, 11 Feb 2022 11:32:23 +0200
MyBatis learning: advanced query (one-to-one mapping)
1, One to one mapping
Suppose that in the permission system, a user can only have one role, that is, the relationship between users and roles is limited to one-to-one relationship.
1.1 handling one-to-one relationships using automatic mapping
A user has a role. We add the role class SysRole field in the user class SysUser. As follows:
publi ...
Added by djelica on Fri, 11 Feb 2022 09:45:56 +0200
Dynamic web pages - reverse analysis + cases
Introduction: this chapter mainly explains the related technologies of dynamic web page crawling. The crawling of dynamic web pages mainly includes reverse analysis method and simulation method. Today, we will mainly introduce the reverse analysis method. Later, we will focus on the use of selenium Library in the simulation method.
Dynamic ...
Added by JonathanS on Fri, 11 Feb 2022 09:32:07 +0200
Package output results
catalogue
After the execution of SQL statements in MyBatis, the processing of results
1. resultType result type refers to the java object that the data is converted to after the sql statement is executed. The java type is arbitrary
2. Alias the resultType of the returned result
3. Save q ...
Added by paullb on Fri, 11 Feb 2022 07:45:04 +0200