如何使用庞大的MySQL数据库加速PHP脚本

时间:2012-11-25 06:27:15

标签: php mysql xml performance rss

我一直致力于获取RSS Feed设置,并且在这里的一些人的帮助下我完成了它。但是,我真的需要一些经验丰富的编码员提供一些建议,告诉我需要更改哪些内容以保持相同的功能,但会加快页面加载。

它查找30个RSS项目并从我的MySQL数据库中获取URL。问题是它在该表中超过1亿行中随机选择30行。这应该是它应该做的,但由于它们在表格中有如此多的行,它确实减慢了脚本的速度,我需要帮助!

<?php header("Content-type: text/xml"); ?>
<?php echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; ?>
<?php include('directory/database.php'); ?>
<rss version="2.0">
<channel>
  <title>Website Reviews</title>
  <link>http://www.mywebsite.com</link>
  <description>Professional Services</description>
  <pubDate><?echo date('Y/m/d H:i:s');?></pubDate>

<?php
    foreach( range( 1, 30 ) as $i ):
$number = mt_rand( 1, 141754641 );
$query="SELECT * FROM `list` LIMIT $number , 1";
$result = mysql_query($query);
if($result == false)
{
   user_error("Query failed: " . mysql_error() . "<br />\n$query");
}
elseif(mysql_num_rows($result) == 0)
{
   echo "<p>Sorry, we're updating this section of our website right now!</p>\n";
}
else
{
   while($query_row = mysql_fetch_assoc($result))
   {
      foreach($query_row as $key => $domain)
      {
         echo "$value";
      }
   }
}  
?>
<item>
    <title><?php echo $domain; ?> REVIEW</title>
    <pubDate><?echo date('Y/m/d H:i:s');?></pubDate>
    <link>http://www.mywebsite.com/review/<?php echo $domain; ?></link>
    <description>Looking for a review on <?php echo $domain; ?>?  We've got it!</description>
</item>
<?php endforeach; ?>

</channel>
</rss>

提前感谢任何人都可以给予的任何帮助!

3 个答案:

答案 0 :(得分:1)

您仍然可以一次选择所有30个。获得30条记录的速度应该不会那么慢。

$numbers=array();
foreach( range( 1, 30 ) as $i ):
    $numbers[] = mt_rand( 1, 141754641 );
endforeach;

$query="SELECT * FROM `list` WHERE `whatever_primary_key_is` IN (".implode(',', $numbers).")";

答案 1 :(得分:1)

限制必须进行表扫描,因此您要做的就是使用索引。首先,让我们在名为“id”的表中添加一个自动增量ID字段。

然后,

<?php
$result = array();
$maxRow = mysql_fetch_assoc(mysql_query("SHOW TABLE STATUS LIKE 'list';"));
$max = $maxRow["Auto_increment"];
$minRow = mysql_fetch_assoc(mysql_query("SELECT id FROM 'list' LIMIT 1;"));
$min = $minRow["id"];
while (count($result) < 30) {
    $ids = array();
    while (count($ids) < 100) {
        $id = mt_rand($min, $max);
        $ids[$id] = 1;
    }
    $res = mysql_query("SELECT * from 'list' WHERE id IN (" . join(',', array_keys($ids)) . ") LIMIT 30");
    while (($row = mysql_fetch_assoc($result)) && (count($result) < 30)) {
        $result[] = array( ... ); // stuff results here
    }
}

// output
?>

答案 2 :(得分:1)

我建议采用更强大的方法。

  1. 您必须考虑到您要查找的号码可能不存在
  2. 只使用一个MySql查询通常更快
  3. 基于url1 url2

    你可以改为使用这个PHP代码:

    <?php
    // Connecting, selecting database
       $link = mysql_connect('mysql_host', 'mysql_user', 'mysql_password') or die('Could not connect: ' . mysql_error());
       mysql_select_db('my_database') or die('Could not select database');
    
    $query = "SELECT `url`
              FROM `liste`
              ORDER BY RAND()
             LIMIT 30" ;
    
    $result = mysql_query($query);
    
    if($result == false)
    {
       user_error("Query failed: " . mysql_error() . "<br />\n$query");
    }
    elseif(mysql_num_rows($result) == 0)
    {
       echo "<p>Sorry, we're updating this section of our website right now!</p>\n";
    }
    else
    {  $query_row = array();
       while($query_row = mysql_fetch_assoc($result))
        { 
            echo $query_row['url']; // no need to do the extra foreach
         }
     }
    
    ?>
    

    值mysql_host,mysql_user,mysql_password,my_database应替换为您的连接。

    只要您的标题表格中有30行,就可以了。