码迷,mamicode.com
首页 > 系统相关 > 详细

Memcache缓存居然不如直接File文件缓存?

时间:2015-08-21 19:28:22      阅读:355      评论:0      收藏:0      [点我收藏+]

标签:memcached   文件缓存   php   

使用本地的环境测试10万次和 100万次 缓存的读写,测试环境和结果如下。

环境

Win7 x64 AMD7750双核 内存8G
Apache 2.4.9
PHP 5.5.12 ts vc11 
memcache 2.2.7 

代码

<?php
function convert($size)
{
    $unit = array(‘b‘, ‘kb‘, ‘mb‘, ‘gb‘, ‘tb‘, ‘pb‘);

    return @round($size / pow(1024, ($i = floor(log($size, 1024)))), 2) . ‘ ‘ . $unit[$i];
}

function cacheFile($key)
{
    $dir = ‘cache‘;
    if (!is_dir($dir) && !mkdir($dir)) {
        throw new Exception(" can‘t make dir $dir");
    }

    $filepath = $dir . DIRECTORY_SEPARATOR . sprintf(‘%x‘, crc32($key));

    if (!(file_exists($filepath) && ($data = file_get_contents($filepath)) && !empty($data))) {
        $data = date(‘Y-m-d H:i:s‘);
        file_put_contents($filepath, $data);
    }

    return $data;
}


function cacheMem($key)
{
    $mem = new Memcache();
    $mem->connect(‘127.0.0.1‘, 11211);
    $data = $mem->get($key);
    if (empty($data)) {
        $data = date(‘Y-m-d H:i:s‘);
        $mem->set($key, $data);
    }

    return $data;
}


$t1 = microtime(true);
$i = 0;
$limit = 1000 * 100; //10 万次
$data = null;
while ($i < $limit) {
//    $data = cacheFile($i);
    $data = cacheMem($i);
    $i++;
}
$timeUse = microtime(true) - $t1;
$arr = [
    ‘cost‘ => sprintf(‘%.7fs‘, $timeUse),
    ‘mem‘ => convert(memory_get_usage())
];
var_dump($arr);

结果 1万次

            花费时间           内存耗费
File        1.9 sec           250kb
Memcache    11 sec            250kb

结果 10万次

            花费时间    内存耗费
File        94s        251.18KB
Memcache    超时120s 报错 

Memcache 10万次测试失败,报错内容如下

Warning: Memcache::connect(): in D:\localhost\speed.php on line 37
Warning: Memcache::get(): No servers added to memcache connection in D:\localhost\speed.php
Warning: Memcache::set(): No servers added to memcache connection in D:\localhost\speed.php on line 41
Fatal error: Maximum execution time of 120 seconds exceeded in D:\localhost\speed.php on line 38

结论

memcache 用来做缓存却还没有 直接File文件缓存快,之所以做这个测试,是因为面试的时候我回答自己并没有使用这个memcache 来做缓存,直接使用File文件缓存(单台服务器),结果直接被技术官认定为是很菜鸟。但我通过这样的测试,虽然是在win下面,可为什么Memcahe性能还不如File ?
还是说我测试的方式存在错误? 求解 default.fu@foxmail.com

版权声明:本文为博主原创文章,未经博主允许不得转载。

Memcache缓存居然不如直接File文件缓存?

标签:memcached   文件缓存   php   

原文地址:http://blog.csdn.net/default7/article/details/47838843

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!