• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

php一致性hash性能测试(flexihash/memcache/memcached)

发布: 2011-2-09 10:18 | 作者: 网络转载 | 来源: 领测软件测试网采编 | 查看: 111次 | 进入软件测试论坛讨论

领测软件测试网

  php一致性hash性能测试(flexihash/memcache/memcached)

  一致性hash的使用在PHP中有三种选择分别是原生的memcache扩展,memcached扩展,还有一个是网上比较流行的flexihash类。

  最近有项目需要使用flexihash类操作memcacheq,想看看,单纯使用php的flexihash一致性hash,分布均匀程度,性能差多少。

  php一致性hash类下载地址:http://code.google.com/p/flexihash/

  测试环境:I7 四核 LINUX FEDORA 使用linux英文词库作为测试用例 memcached开启4个线程

  测试结果:

  其中,单节点指的是,在只有一个节点工作情况下的,测试结果。

  小结

  如上所示,就memcache扩展与memcached扩展比较来看,在当全部节点工作正常的时候,测试条件memcached略快,但基本可以忽略不计。当只有单节点正常工作的时候,memcached扩展性能比 memcache快,我想可能是因为,memcached扩展在检测到连接无效的时候,没有再进行连接测试,直接将数据hash到连接有效的节点。当然这个只是猜测,需要看源码才能理解。

  48万条数据操作,使用flexihash做一致性hash与使用扩展一致性hash,在hash这个过程中,速度仍旧在一个数量级上,大约是使用扩展速度的一半,其效率可以接受。在分布均匀性上,两个扩展分布基本比较均匀,在使用flexihash不使用虚拟节点时候,分布非常不均匀,在使用16个虚拟节点后,分布均匀性已经接近扩展了。在使用虚拟节点后, set速度相比较没使用时候略慢,get操作反而变快。

  下面给出测试源码

  flexihash一致性hash测试

  view source

print?
01 require_once 'flexihash.php';
02 Class FMemcache
03 {
04   
05     public $hash = null;
06     public $memcache = null;
07     public $connectPool = null;
08   
09     public function __construct()
10     {
11         $this->hash = new Flexihash();
12     }
13   
14     public function addServers( $servers )
15     {
16         foreach ($servers as $server)
17         {
18             $node = $server['host'] . ':' . $server['port'];
19             $this->connectPool[$node] = false;
20             $targets[] = $node;
21         }
22         $this->hash->addTargets( $targets );
23     }
24   
25     public function set( $key, $value )
26     {
27         $nodes = $this->hash->lookupList( $key, count( $this->connectPool ) );
28         foreach ($nodes as $node)
29         {
30             if (!$this->connectPool[$node])
31             {
32                 $server = explode( ':', $node );
33                 $this->connectPool[$node] = @memcache_connect( $server[0], $server[1] );
34             }
35             if ($this->connectPool[$node])
36             {
37                 if (memcache_set( $this->connectPool[$node], $key, $value ))
38                 {
39                     return true;
40                 }
41             }
42         }
43         return false;
44     }
45   
46     public function get( $key )
47     {
48         $nodes = $this->hash->lookupList( $key, count( $this->connectPool ) );
49         foreach ($nodes as $node)
50         {
51             if (!$this->connectPool[$node])
52             {
53                 $server = explode( ':', $node );
54                 $this->connectPool[$node] = @memcache_connect( $server[0], $server[1] );
55             }
56             if ($this->connectPool[$node])
57             {
58                 if (memcache_get( $this->connectPool[$node], $key ))
59                 {
60                     return true;
61                 }
62             }
63         }
64         return false;
65     }
66   
67 }

  测试代码:

  view source

print?
01 require_once 'flexihash_memcache.php';
02 require_once 'Config.php';
03 $st = microtime( true );
04 $mem = new FMemcache();
05 $mem->addServers( $tt_server_pool );
06 $wordAmount = 0;
07 $getCount = 0;
08 foreach ($words as $word)
09 {
10     if (empty( $word ))
11     {
12         continue;
13     }
14     $inc = $mem->set( $word, $word );
15 }
16 $et = microtime( true ) - $st;
17 echo "time used:" . $et;

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备2023014753号-2
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网