search
HomeBackend DevelopmentPHP TutorialMySQL plus transaction processing equals MaxSQL_PHP tutorial
MySQL plus transaction processing equals MaxSQL_PHP tutorialJul 13, 2016 pm 05:25 PM
mysqltransaction processingexistbigopenSource codeofequal

Last August at the OReilly-sponsored open source conference, MySQL developer Monty Widenius announced a new project called MaxSQL, an enhanced version of the currently popular MySQL database. The most important thing is that MaxSQL incorporates the latest Berkeley DB library from Sleepycat software, so the program supports transaction processing with another table type.

Currently, you cannot directly install the binary version of MaxSQL. You must compile it from the source code of MySQL 3.23 beta, but by the time you read this article, you should be able to download MaxSQL from the MySQL website. If you want to compile the latest version yourself, please see the article "Compiling your own MaxSQL", where I describe the compilation steps in detail.

What is a transaction?

Why does adding a transaction-safe table require a new project name? Perhaps I should mention that Monty Widenius, the main developer of MySQL, has two children, one named My and the other Max. Not only do the two brothers compete with each other, there is also a rival PostgreSQL.

About PostgreSQL, our other article in this issue "PostgreSQL adds a level to e-commerce" will mention that it is a competitor that is beneficial to us all, because every project team is overcoming Weaknesses in your own product. What MaxSQL does is bridge the gap between these two rivals. MySQL has fast read operations, so it is very popular with Web developers because Web content is mainly read. However, on the other hand, because MySQL uses ISAM tables, the entire table must be locked during write operations, which slows down update and insert operations, which is a big problem when the traffic is heavy. When the number of requests per second increases dramatically, write operations are queued in the server, and timeout errors occur on the Web page.

After using MaxSQL, you can still create ordinary fast ISAM type tables, or you can choose to use the new BDB type when a certain table needs to use transaction security features.

BDB tables are much faster than ISAM during write operations. Because they don't use table-level locks. In addition, the processing of any transaction table is logged in case of hardware failure. The log allows COMMIT/ROLLBACK operations. For example, if you place an order in an online store, the order will be recorded as a row in the "order" table. The system will subtract the corresponding inventory quantity from a row in the "inventory" table. If using MySQL's ISAM table, a CGI program needs to perform the following six steps:



LOCK inventory table
LOCK order table
UPDATE inventory table
UPDATE order table
UNLOCK inventory table
UNLOCK order table

If someone locked it For any table, this CGI program must wait. Once both are locked, CGI can update them and then release the lock. If step three fails (for example, the server is down), the order table will not be updated and your inventory will have been reduced.

After using the MaxSQL BDB transaction security type table, only four steps are needed:

BEGIN
UPDATE inventory table
UPDATE order table
COMMIT

You don't have to wait for the lock to be released, all four steps are one transaction. As soon as the BEGIN statement is read, MySQL reads the command into the buffer until it sees the COMMIT command. Therefore, all operations occur at the same time. Even if an unexpected operation occurs (disk full or power outage), the database will not be destroyed. In a non-transaction-safe system, if the third step fails, the database will be inconsistent. In the BDB table, if the operation on the order table fails, MySQL will resume the operation on the inventory table, so that no inconsistency will occur. .

Many websites use early versions of MySQL to implement table locks, but after using MaxSQL, it will be easy and fast.

What other new weapons are there?

In addition to the need to convert MySQL to MaxSQL because of the BDB table, there are also some important changes. One of the secret weapons is database replication. You can use one server as the master server and configure any number of slave servers, so that updates to the master server will also be copied to the slave servers. In order to use such a system, change your CGI scripts to make them aware of the existence of the MySQL slave server. This script will also switch to the slave server when it cannot connect to the master server.

It should be noted that such a system is only effective for databases with few write operations, because replication is not synchronous. If someone starts a transaction on the master server and the server dies before the transaction ends, the master server will not have time to copy the updates to the slave servers. In this way, this system is not suitable for e-commerce. Moreover, the CGI script always connects to the main server first, so it is not a load-balanced system.

Another major improvement is the format of ISAM type tables. The default table type is now called MyISAM. This type of table can handle up to 2GB per table and is cross-platform. You can copy a MyISAM file from Linux to Solaris without any conversion.

Conclusion:

MaxSQL can be used as an excellent alternative to expensive business systems. Many systems do not need to process many transactions and require Oracle to be installed. The transaction-safe tables provided by MaxSQL make the programming work of updating the database easier.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/532068.htmlTechArticleAt the open source conference sponsored by OReilly last August, MySQL developer Monty Widenius announced a new project It's called MaxSQL, an enhancement of the currently very popular MySQL database...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
图文详解mysql架构原理图文详解mysql架构原理May 17, 2022 pm 05:54 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

mysql怎么去掉第一个字符mysql怎么去掉第一个字符May 19, 2022 am 10:21 AM

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

mysql怎么将varchar转换为int类型mysql怎么将varchar转换为int类型May 12, 2022 pm 04:51 PM

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

mysql怎么判断是否是数字类型mysql怎么判断是否是数字类型May 16, 2022 am 10:09 AM

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function