Home php教程 php手册 mysql空间速度慢

mysql空间速度慢

Jun 13, 2016 am 09:54 AM
mysql indivual I server of space Answer virtual slow question




mysql空间速度慢
答案


请教大家一个问题,我花钱租了个mysql的服务器虚拟空间,发现速度很慢。我用最简单的表格查询,每查询一次都要用5秒钟以上,这正常吗?

数据库里,只有一个表格和两条记录,
下面是我的测试代码:

$stime = microtime(true); // 获取程序开始执行的时间

$db_ip = "61.152.93.83";

$db_user = 'blinnes';

$db_pass = 'ji64Edfw2';

$cn = mysql_connect($db_ip, $db_user, $db_pass);

$db = mysql_select_db("blinn");

$sql = "select * from `test`";

mysql_query("set names gb2312");

$rs = mysql_query($sql);

while ($row = mysql_fetch_array($rs))

{

echo "mysql! - " . $row['名称'] . "|" . $row['数量'] . "
";

}

mysql_close($cn);

$etime = microtime(true); // 获取程序执行结束的时间

$total = $etime - $stime; // 计算差值

echo "(mysql版)此次查询执行时间:" . $total . "秒";

?>


复制代码


最佳答案[url=http://www.phpchina.com/bbs/space.php?username=Fising]链接标记Fising[/url]
[url=http://www.phpchina.com/bbs/space.php?uid=31544]链接标记[img]http://www.phpchina.com/server/avatar.php?uid=31544&size=small[/img][/url]网络连接开销太大了。数据库和WEB最好在一个机器,不行最好是在一个局域网也可以。



其它解决方案
网络连接开销太大了。数据库和WEB最好在一个机器,不行最好是在一个局域网也可以。

其它解决方案
楼上所言极是

其它解决方案
是这样的。很多主机甚至不支持远程连接的

其它解决方案
中国数据的服务器吧~这台服务器都已经坏了,呵呵

服务器负载太高造成的

其它解决方案
换空间 找个好点的

其它解决方案
多谢大家啦,问题解决。[img]http://www.phpchina.com/bbs/images/smilies/default/victory.gif[/img]
的确是中国数据的服务器啦.[img]http://www.phpchina.com/bbs/images/smilies/default/sleepy.gif[/img]
估计就是Fising说的数据库和PHP不在一台服务器的原因,让他们把数据库空间和php空间弄到同一台服务器上,速度就快了。

其它解决方案
[img]http://www.phpchina.com/bbs/images/smilies/default/shocked.gif[/img]


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

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 ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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)

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

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.

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

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 a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

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.

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

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.

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

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.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

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

Equipped with AMD EPYC 4004 series processors, ASUS launches a variety of server and workstation products Equipped with AMD EPYC 4004 series processors, ASUS launches a variety of server and workstation products Jul 23, 2024 pm 09:34 PM

According to news from this website on July 23, ASUS has launched a variety of server and workstation-level products powered by AMD EPYC 4004 series processors. Note from this site: AMD launched the AM5 platform and Zen4 architecture EPYC 4004 series processors in May, offering up to 16-core 3DV-Cache specifications. ASUSProER100AB6 server ASUSProER100AB6 is a 1U rack server product equipped with EPYC Xiaolong 4004 series processor, suitable for the needs of IDC and small and medium-sized enterprises. ASUSExpertCenterProET500AB6 workstation ASUSExpertCenterProET500AB6 is a

Samsung Galaxy Z Flip6 review: Simple design and practical experience, is the answer to the discounted version? ! Samsung Galaxy Z Flip6 review: Simple design and practical experience, is the answer to the discounted version? ! Jul 30, 2024 pm 12:54 PM

In the field of folding screens, small folding screens are also loved by many young users due to their lightweight, portable, exquisite and compact fashion attributes. In the previous review of the Samsung Galaxy Z Fold6 large folding screen, I gave it a "more square and more AI" evaluation. The small folding screen released at the same time, Samsung Galaxy Z Flip 6, has also attracted much attention. So what will it be like? Today, let’s unlock this new fashion product together. "Light" design: The fashionable appearance on the fingertips is the same as Galaxy Z Fold 6. The Galaxy Z Flip 6 body adopts a square design. In the unfolded state, the fuselage is slender than the average candy bar machine. The front and rear are connected by a straight-sided middle frame, and the four R corners retain a rounded shape.

See all articles