WordPress在NAS上运行速度极慢

时间:2011-02-09 作者:Fuxi

我在NAS和本地计算机(笔记本)上重新安装了wordpress。在我的笔记本上,任何东西都运行得很好(加载大约需要3秒),但从我的NAS上看,速度非常慢:((大约需要12秒)

这是相同的设置,我找不到原因..:(

问题似乎是内部siteurl(nas的ip地址),wordpress正在所有路径上使用它。。

有什么想法吗?谢谢

2 个回复
最合适的回答,由SO网友:kaiser 整理而成

我想你自己已经回答了这个问题。另一个原因可能是NAS的硬盘驱动器速度慢(5.400 rpm),或者连接速度慢。

编辑:加快删除不需要的仪表板项目的速度。。。

<?php
/*
Plugin Name:    Dashboard-Widgets Removal Plugin
Plugin URI:     http://example.com
Description:    Disables admin UI dashboard widgets that you do not want
Author:         Franz Josef Kaiser
Author URI:     http://say-hello-code.com
Version:        0.1
License:        GPL v2 - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/
/**
 * Disable unwanted Dashboard Admin UI Widgets
 */
function oxo_dashboard_widgets() {
    if ( !is_admin() ) 
        return;

    global $wp_meta_boxes;
    // Right Now - Comments, Posts, Pages at a glance
    # unset( $wp_meta_boxes[\'dashboard\'][\'normal\'][\'core\'][\'dashboard_right_now\'] );
    // Recent Comments
    # unset( $wp_meta_boxes[\'dashboard\'][\'normal\'][\'core\'][\'dashboard_recent_comments\'] );
    // Incoming Links
    # unset( $wp_meta_boxes[\'dashboard\'][\'normal\'][\'core\'][\'dashboard_incoming_links\'] );
    // Plugins - Popular, New and Recently updated Wordpress Plugins
    unset( $wp_meta_boxes[\'dashboard\'][\'normal\'][\'core\'][\'dashboard_plugins\'] );

    // Wordpress Development Blog Feed
    unset( $wp_meta_boxes[\'dashboard\'][\'side\'][\'core\'][\'dashboard_primary\'] );
    // Other Wordpress News Feed
    unset( $wp_meta_boxes[\'dashboard\'][\'side\'][\'core\'][\'dashboard_secondary\'] );
    // Quick Press Form
    # unset( $wp_meta_boxes[\'dashboard\'][\'side\'][\'core\'][\'dashboard_quick_press\'] );
    // Recent Drafts List
    unset( $wp_meta_boxes[\'dashboard\'][\'side\'][\'core\'][\'dashboard_recent_drafts\'] );
}
add_action( \'wp_dashboard_setup\', \'oxo_dashboard_widgets\' );
?>
编辑2:链接到提供时间测量的调试插件:Blackbox Bar

SO网友:Amigo Chan

我在年用SugarCRM设计了一个测试Performance Comparison on Retrieving Contacts from SugarCRM with QNAP TS-112, TS-212P, and TS-119PII. 但由于它们都是AMP(Apache MySQL PHP)程序,您可能对结果感兴趣。

enter image description here

我认为提高绩效的关键是:

禁用不需要的服务。例如,媒体库

为了检查硬盘驱动器是否是减慢进程的关键组件,我还在中进行了另一项测试QNAP TS-112 with OCZ SSD Performance Report.

enter image description here

不幸的是,即使将NAS中的硬盘驱动器更换为SSD,差别也很小。我认为更换处理器后,不会显著提高WordPress的性能。

希望有帮助!

结束

相关推荐

Performance on WPMS

我的WPMS站点托管在8核/32mb RAM服务器上,但响应时间非常长。我们有大约1000个博客(单个db上有35000多个表)和70000个页面浏览量。我认为我可以缩短响应时间,将具有更多页面浏览量的博客移动到单独的DB中,并使用hyper DB插件将所有博客拆分为每个DB 100个博客。你觉得怎么样?