Establishment and use of MysqlCluster cluster
Distributed data storage solution for 100 million users 1
1. Introduction
MySQL Cluster is a high-performance, scalable and clustered database product. Its original intention of R & D and design is to meet the most severe application requirements in many industries. In these applications, the reliability of database operation is often ...
Added by AbydosGater on Tue, 21 Sep 2021 11:38:58 +0300
Synchronize Canal Mysql binlog to Hbase ES
1, Canal introduction
In the early days, Alibaba had the business requirement of cross machine room synchronization due to the deployment of dual machine rooms in Hangzhou and the United States. The implementation method was mainly to obtain incremental changes based on the business trigger. Since 2010, the business has gradually tried to obta ...
Added by Voodoo Jai on Tue, 21 Sep 2021 04:39:54 +0300
Deeply understand the features of redis and the performance testing tool redis benchmark
What is redis
Redis is an open source (BSD licensed) in memory data structure storage system, which can be used as database, cache and message middleware. It supports many types of data structures, such as strings, hashes, lists, sets, sorted sets And range query, bitmaps, hyperloglogs and geospatial Index radius query. Redis has built ...
Added by Karlos2394 on Tue, 21 Sep 2021 00:49:26 +0300
smbms supermarket management system (crazy God notes) September 19, 2021
1. Smbms (supermarket management project)
[external chain picture transfer failed. The source station may have an anti-theft chain mechanism. It is recommended to save the picture and upload it directly (img-r5ny1ksq-1632046547618) (smbms (supermarket management project)]. assets/20200516122458676.png)
Database:
[external chain picture trans ...
Added by LinuxForce on Mon, 20 Sep 2021 23:14:23 +0300
Mybatis plus detailed tutorial
Mybatis plus tutorial
Welcome to the "Java master" of the blogger official account, focusing on dry cargo articles in Java field. http://www.javaman.cn/jszw/mybatis-plus
What is mybatis plus
MyBatis-Plus (opens new window) (MP) is a MyBatis (opens new window) On the basis of MyBatis, the enhancement tool is only enhanced without ch ...
Added by amit on Mon, 20 Sep 2021 22:46:02 +0300
Common Redis commands
1, Redis global command operation
1. View all keys
keys *
-- Fuzzy search queries can also be used, but generally they are not pushed
keys s*
2. View the total number of keys
dbsize
3. Check if the key exists
exists key
4. Delete key to return the number of deleted entries
del key
5. Key expiration
Return the remaining expiration ...
Added by carlosx2 on Mon, 20 Sep 2021 18:37:25 +0300
September 12, 2021 Tianchi SQL training camp Task02
MySQL query sorting
This note is the learning content of Alibaba cloud Tianchi Longzhu plan SQL training camp. The link is: https://tianchi.aliyun.com/specials/promotion/aicampsql ;
1.1 use of select
Use format
select Listing as 'alias', Listing ,.....from Table name
where query criteria;
Relevant rules
An asterisk () means all columns. ...
Added by ridiculous on Mon, 20 Sep 2021 10:43:48 +0300
Database notes (basic operation)
Database notes
Database foundation
1. Start MySql service on the terminal:
net start mysql;
2. Connect to MySQL: (add one, not - proot; oh)
mysql -h localhost -p 3306 -u root -proot (h Database links, p Database port number, u Database user name -p Database password, p (no space between and password)
3. View database:
`show databases; ...
Added by dannynosleeves on Mon, 20 Sep 2021 00:22:20 +0300
[back end] - frame -- shiro
shiro
Rights Management Overview
Permission management realizes the control of users' access to the system and controls that users can access and only access their authorized resources according to security rules or security policies. In other words, rights management includes user identity authentication (login) and authorization (access rig ...
Added by urb on Sun, 19 Sep 2021 20:59:49 +0300
Mybatis - Basics
Mybatis - Basics
⭐ sketch
Mybatis – MyBatis 3 | introduction - official address
You can learn from the official address, and most of the content of this article is also quoted here
1 what is mybatis
A persistence layer framework, which is also a semi ORM (semi automated) framework, encapsulates JDBC code at the bottom, so that p ...
Added by The Wise One on Sun, 19 Sep 2021 09:11:10 +0300