Sun大裁员 将裁减部分MySQL员工
Oracle收购Sun之后,大家最担心的还是MySQL的命运问题。到底MySQL该不该死,Oracle似乎信誓旦旦的表示不会。但是日前Sun大举裁员的举动,似乎与Oracle的承诺背道而驰。 11月底的时候,Sun Microsystems公司的几千名员工意识到,从1月4日开始,他们的服务将不
Oracle收购Sun之后,大家最担心的还是MySQL的命运问题。到底MySQL该不该死,Oracle似乎信誓旦旦的表示不会。但是日前Sun大举裁员的举动,似乎与Oracle的承诺背道而驰。
11月底的时候,Sun Microsystems公司的几千名员工意识到,从1月4日开始,他们的服务将不再有人需要了。虽然裁员早就是员工们意料之中的事,但是裁员的幅度却远 远超出了人们的预期。 除了会计、人事、销售、营销等通常都会在并购交易后进行裁员的部门之外,Sun还将裁掉许多从事开源项目的员工,包括直接参与MySQL开发的员工。虽然 甲骨文也需要一定数量的这类员工来继续开发MySQL,从而信守它对欧盟委员会所作的承诺,但是部分开发MySQL的员工仍然会被裁掉。
据一位不愿意透露身份的知情人士称:"他们向欧盟委员会作出了5年的承诺,但是又裁掉了与MySQL直接相关的员工, 因此我怀疑他们无法保证自己的承诺。"
从支持工程师到营销,从销售到研发,Sun公司各部门都有参与开源项目的员工。知情人士估计,仅 这些参与开源项目的员工数量就在3000人以上。
知情人士称,虽然这并不能给公司带来直接收益,但是许多组织尤其是美国之外的组织都把 开源当做一项要求。
甲骨文并不是第一家开源公司,但是它确实也有一些开源的产品,包括InnoDB数据库及其牢不可破的Linux软件。
那么留下些什么呢?
现在Sun公司员工和Java创始人James Gosling对此也摸不着头脑。James Gosling以后的身份还不清楚,但是据说甲骨文并不想挽留他。一年一度的Java开发员会议JavaOne的命运也不明朗。尽管有传言称这个会议将被 保留下来,但是目前还没有任何迹象能说明这个会议今后会怎样。
正如甲骨文所说的,它非常喜欢Solaris系统,但它也随时准备砍掉 OpenSolaris项目。具体细节还不清楚,但甲骨文可能会让Solaris系统的开发回到前首席执行官乔纳森施瓦茨掌权时的闭源状态,而且不会将它 用作新技术的试验田。
甲骨文对Java的计划还不太明确,但是大多数相关员工即从事OpenJDK项目的营销和技术人员都已经被裁掉 了。
Sun 的GlassFish是甲骨文优先考虑的产品,因此GlassFish的整个团队几乎原封不动地保留下来。Sparc处理器也将保留下来,因为甲骨文在几 个月前就在华尔街日报上打广告时作出了承诺,如果不出意外的话,甲骨文还将原封不动地保留Sun公司的存储业务。
知情人士称,但是关于 Rock将被放弃的传言却是千真万确的。纽约时报在几个月前报道称,Sun已经彻底放弃代码为Rock的新一代处理器开发计划。
Rock是真正被放弃了,但是Sun将继续开发UltraSparc芯片。在上周的财报分析师电话会议上,埃利森表示甲骨文将通过Sparc和x86专注 于高端服务器市场,不再理会低端和中端市场。
Gartner的研究副总裁Martin Reynolds对此并不感到意外。他说:"你去看看Sun的财报就会发现,有许多开支项目并没有获得相应的收益。 在并购交易完成之前,通常你都会设法剔除一些东西,因此这是一个好现象,Sun相信一切都会有个结果了。"
作为并购交易的一部 分,Sun必须在交易结束之前将自己清理干净,甲骨文在这段期间内不会干涉Sun的业务。Reynolds怀疑Sun会把事情搞得一塌糊涂。
他说:"Sun现在所做的事情会让甲骨文很难兑现其承诺,这一点非常奇怪。因此我不太相信甲骨文会信守承诺。"
但是Reynolds 对于Sun的裁员并不感到意外。Sun有许多投资项目并未赚到钱,它的开源项目也没有什么亮点。例如,OpenSolaris虽然备受好评,但是却没有多 大财务贡献。Reynolds补充说,如果未来版本的Solaris和Java不再以开源方式发布,他也不会感到奇怪。

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

AI Hentai Generator
Generate AI Hentai for free.

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

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

According to news from this site on August 6, according to a report by Bloomberg today, Dell Technologies is laying off employees as part of a reorganization of its sales team. The restructuring measures also include establishing a new team focused on AI products and services. "We are becoming leaner," sales team executives Bill Scannell and John Byrne wrote in a memo to Dell employees on Monday. "We are streamlining management and reprioritizing investments." In addition to the team focused on artificial intelligence, Executives also said the company will change the way data center sales work. A spokesman declined to comment on how many jobs would be affected. "Through a reorganization of our market-facing teams and a series of actions, we are becoming a leaner company," the spokesperson said.

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

Xiaohongshu has launched a new round of layoffs, focusing on low-performing employees. According to news on July 4, ifeng.com Technology exclusively learned that Xiaohongshu has recently launched a new round of layoffs. A Xiaohongshu employee said, "The layoffs have just reached the HC lock-in stage, and a personnel inventory is being carried out, but there has been no official notification yet, and everyone internally is waiting for emails." This round of personnel adjustments mainly focuses on employees whose performance is below 3.5-, including 3.5- and 3.25. This group of employees accounts for approximately 30% of the total number of employees. The news was confirmed by multiple internal Xiaohongshu employees. According to another internal employee, the rumor circulating internally is that “the new senior management is not satisfied with the current human-efficiency ratio of Xiaohongshu and believes that the current human-efficiency ratio of Xiaohongshu can only reach half of that of Pinduoduo.” Ifeng Technology reported this news to Xiaohong
