Home Database Mysql Tutorial 修复Bug大幅升级 Sun发布MySQL5.1版_MySQL

修复Bug大幅升级 Sun发布MySQL5.1版_MySQL

Jun 01, 2016 pm 01:59 PM
database

Sun在其收购后的第一次MySQL会议后,决定在开放源数据库方面对MySQL进行升级.Sun将利用这项活动在美国加州发布MySQL 5.1,新版本增加了几个新的特点,使数据库能够更适合在大型企业的关键业务应用.“5.1虽然听起来是似乎是小幅度的升级,但是已经具备了一些非常出色 的特点,”Sun的MySQL产品部副总裁Zack Urlocker表示.“也许我们该称它为6.0,因为这里面包含了很多升级,并且我们已经为这个研究了数年的时间.”

  5.1的优势主要体现在分区,事件管理,基于行的复制和基于磁盘的集群.它们都已经成为IBM,Oracle, 和Microsoft提供的标准升级功能,但是他们必须帮助MySQL提高在性能和规模是至关重要的环境下的竞争力.

  “我们真正做到了一件值得骄傲的事,就是我们修复了5.0版本的一批BUG,”Urlocker表示,“所以5.1不仅具有更高的可靠性,而且性能提升20%左右,这次升级将带来一个显着的性能提升和可扩展性的增强.”

  MySQL曾表示在第一季度,3月31日之前发布5.1,一些开发商也都在等待新版本的发布.一位英国的用户在上个月就曾表示:“我有点失望,一季度已经差不多快要结束了,但是还没有看到任何要发布MySQL 5.1的迹象.”

  下周的讨论议题主要包括交易引擎MySQL的开发者应该在发展的过程中注重哪些方面.今天大部分顾客都在使用InnoDB,这个软件已经在几年前变成了一种习惯性用于Oracle,MySQL一直在开发一种替代品,叫做Falcon,这将与MySQL 6.0一同发布.

  同时,MySQL最早的开发者之一Michael Widenius正在开发一个叫作Maria的交易引擎,它的一个版本已经在1月份发布.

  “Maria开发团队的目标是使Maria成为MySQL AB的默认交易引擎,Falcon团队也是同样的这个目标.”Michael Widenius曾经在博客中写道.

  开发商也在为MySQL寻找一个新的路线图,在一些Sun以10亿美元结束收购后没有给出的领域,它们在寻找一些Sun不会干预MySQL的开放源代码的发展模式,以及一些它已经承诺不会去做的那些方面.

  Sun看起来的确在精心收集关于Falcon的市场信息,该软件将在“多核心,多线程环境下被优化为WEB应用程序,”Urlocker表示.Sun一直在使用类似的语言,在其运行繁忙服务器上的多核心、多线程处理器上.

  另外,Poodle十分看好这次收购,Sun是一家同时提供免费和付费产品的大公司,这将有助于MySQL打入企业市场.他表示:“我并不是说MySQL已经在一定水平上能同那些大型的产品相比,但是它正在快速在成长.”

Statement of this Website
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

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1665
14
PHP Tutorial
1269
29
C# Tutorial
1249
24
iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos Jul 18, 2024 am 05:48 AM

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

How does Hibernate implement polymorphic mapping? How does Hibernate implement polymorphic mapping? Apr 17, 2024 pm 12:09 PM

Hibernate polymorphic mapping can map inherited classes to the database and provides the following mapping types: joined-subclass: Create a separate table for the subclass, including all columns of the parent class. table-per-class: Create a separate table for subclasses, containing only subclass-specific columns. union-subclass: similar to joined-subclass, but the parent class table unions all subclass columns.

How to handle database connection errors in PHP How to handle database connection errors in PHP Jun 05, 2024 pm 02:16 PM

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

Detailed tutorial on establishing a database connection using MySQLi in PHP Detailed tutorial on establishing a database connection using MySQLi in PHP Jun 04, 2024 pm 01:42 PM

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

How to use database callback functions in Golang? How to use database callback functions in Golang? Jun 03, 2024 pm 02:20 PM

Using the database callback function in Golang can achieve: executing custom code after the specified database operation is completed. Add custom behavior through separate functions without writing additional code. Callback functions are available for insert, update, delete, and query operations. You must use the sql.Exec, sql.QueryRow, or sql.Query function to use the callback function.

How to save JSON data to database in Golang? How to save JSON data to database in Golang? Jun 06, 2024 am 11:24 AM

JSON data can be saved into a MySQL database by using the gjson library or the json.Unmarshal function. The gjson library provides convenience methods to parse JSON fields, and the json.Unmarshal function requires a target type pointer to unmarshal JSON data. Both methods require preparing SQL statements and performing insert operations to persist the data into the database.

PHP connections to different databases: MySQL, PostgreSQL, Oracle and more PHP connections to different databases: MySQL, PostgreSQL, Oracle and more Jun 01, 2024 pm 03:02 PM

PHP database connection guide: MySQL: Install the MySQLi extension and create a connection (servername, username, password, dbname). PostgreSQL: Install the PgSQL extension and create a connection (host, dbname, user, password). Oracle: Install the OracleOCI8 extension and create a connection (servername, username, password). Practical case: Obtain MySQL data, PostgreSQL query, OracleOCI8 update record.

How to handle database connections and operations using C++? How to handle database connections and operations using C++? Jun 01, 2024 pm 07:24 PM

Use the DataAccessObjects (DAO) library in C++ to connect and operate the database, including establishing database connections, executing SQL queries, inserting new records and updating existing records. The specific steps are: 1. Include necessary library statements; 2. Open the database file; 3. Create a Recordset object to execute SQL queries or manipulate data; 4. Traverse the results or update records according to specific needs.

See all articles