MySQL两高层离职对Sun影响有多远 Linux
这十来天,对MySQL来说,可谓是新闻频频。 首先,开源数据库MySQL创始人Monty Widenius离开了Sun公司。一天之后,同样的事
摘要:随着MySQL两位高层的离职,有人担心会给Sun投资10亿美元的数据库计划带来麻烦。但是,事实上也许不会,让时间来证明吧。
这十来天,对MySQL来说,可谓是新闻频频。
首先,开源数据库MySQL创始人Monty Widenius离开了Sun公司。一天之后,同样的事情发生了,,MySQL前CEO Marten Mickos也决定离开Sun公司。
这个消息,对于Sun公司拿10亿美元投资的MySQL会不会造成危害呢?Sun会不会处于投资失败的风险中呢?
就我个人而言,两位高层的离开,Sun公司的MySQL部门处境未必糟糕。MySQL部门是一个大的部门,并不会因为两个人的离开而处于瘫痪,不管这两位高层曾经的头衔有多高。
当然,话说回来,Widenius作为MySQL的创始人,在MySQL界内还是占有很特殊的席位的,对吧?
然而,MySQL的境况也未必会更糟糕。至少从去年开始,Widenius已经投身于Maria引擎(一种MySQL 数据库的插件)。虽然他会离开,但是他还会继续专注于Maria引擎,对Maria引擎来说,这并非坏事,因为他的工作不会因为Sun公司所打断,或许会取得更好成果。如果在Sun公司,Maria的开发或许会受到Sun公司的束缚。
对于MySQL来说,还有其它的事务数据库引擎,知名度很高的InnoDB引擎,该引擎自2005年以来由Oracle公司所拥有。从2006年开始,MySQL也一直在开发自己的事务数据库引擎,名为Falcon。这个工作不是由Widenius来领导的,而是由Jim Starkey来充当先锋力量,Starkey的公司Netfrastructure在2006年2月份被当时的MySQL收购。有人会说对于MySQL数据库的发展来看,Starkey的Falcon工作的重要性至少和Widenius的Maria同样重要。
Widenius对现在的MySQL 5.1 版本不满意,并且还不能阻止它。简单的事情就能看出来,Widenius对MySQL的控制力没有以前那么强了,Widenius一直没有领导MySQL主要的大项目。虽然他的建议会造成影响,但实际上管理MySQL开发的还是Sun基层人员。结果就是Widenius的离开并不会对MySQL数据库的开发造成直接影响。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

MySQL is an open source relational database management system, mainly used to store and retrieve data quickly and reliably. Its working principle includes client requests, query resolution, execution of queries and return results. Examples of usage include creating tables, inserting and querying data, and advanced features such as JOIN operations. Common errors involve SQL syntax, data types, and permissions, and optimization suggestions include the use of indexes, optimized queries, and partitioning of tables.

Apache connects to a database requires the following steps: Install the database driver. Configure the web.xml file to create a connection pool. Create a JDBC data source and specify the connection settings. Use the JDBC API to access the database from Java code, including getting connections, creating statements, binding parameters, executing queries or updates, and processing results.

MySQL's position in databases and programming is very important. It is an open source relational database management system that is widely used in various application scenarios. 1) MySQL provides efficient data storage, organization and retrieval functions, supporting Web, mobile and enterprise-level systems. 2) It uses a client-server architecture, supports multiple storage engines and index optimization. 3) Basic usages include creating tables and inserting data, and advanced usages involve multi-table JOINs and complex queries. 4) Frequently asked questions such as SQL syntax errors and performance issues can be debugged through the EXPLAIN command and slow query log. 5) Performance optimization methods include rational use of indexes, optimized query and use of caches. Best practices include using transactions and PreparedStatemen

MySQL is chosen for its performance, reliability, ease of use, and community support. 1.MySQL provides efficient data storage and retrieval functions, supporting multiple data types and advanced query operations. 2. Adopt client-server architecture and multiple storage engines to support transaction and query optimization. 3. Easy to use, supports a variety of operating systems and programming languages. 4. Have strong community support and provide rich resources and solutions.

The main role of MySQL in web applications is to store and manage data. 1.MySQL efficiently processes user information, product catalogs, transaction records and other data. 2. Through SQL query, developers can extract information from the database to generate dynamic content. 3.MySQL works based on the client-server model to ensure acceptable query speed.

The process of starting MySQL in Docker consists of the following steps: Pull the MySQL image to create and start the container, set the root user password, and map the port verification connection Create the database and the user grants all permissions to the database

Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

The key to installing MySQL elegantly is to add the official MySQL repository. The specific steps are as follows: Download the MySQL official GPG key to prevent phishing attacks. Add MySQL repository file: rpm -Uvh https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm Update yum repository cache: yum update installation MySQL: yum install mysql-server startup MySQL service: systemctl start mysqld set up booting
