本文实例讲述了PHP基于redis计数器类定义与用法。分享给大家供大家参考,具体如下:
Redis是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言的API。
这里使用其incr(自增),get(获取),delete(清除)方法来实现计数器类。
1.Redis计数器类代码及演示实例
RedisCounter.class.php
<"color: #ff0000">demo.php<"htmlcode">0 1 11 1 02.并发调用计数器,检查计数唯一性
测试代码如下:
<"color: #ff0000">ab工具进行测试,设置执行150次,15个并发。ab -c 15 -n 150 http://localhost/test.php执行结果:
ab -c 15 -n 150 http://localhost/test.php This is ApacheBench, Version 2.3 <$Revision: 1554214 $> Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Licensed to The Apache Software Foundation, http://www.apache.org/ Benchmarking home.rabbit.km.com (be patient).....done Server Software: nginx/1.6.3 Server Hostname: localhost Server Port: 80 Document Path: /test.php Document Length: 0 bytes Concurrency Level: 15 Time taken for tests: 0.173 seconds Complete requests: 150 Failed requests: 0 Total transferred: 24150 bytes HTML transferred: 0 bytes Requests per second: 864.86 [#/sec] (mean) Time per request: 17.344 [ms] (mean) Time per request: 1.156 [ms] (mean, across all concurrent requests) Transfer rate: 135.98 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 0 0 0.2 0 1 Processing: 3 16 3.2 16 23 Waiting: 3 16 3.2 16 23 Total: 4 16 3.1 17 23 Percentage of the requests served within a certain time (ms) 50% 17 66% 18 75% 18 80% 19 90% 20 95% 21 98% 22 99% 22 100% 23 (longest request)检查计数是否唯一
生成的总计数 wc -l /tmp/mytest_result.log 150 /tmp/mytest_result.log 生成的唯一计数 sort -u /tmp/mytest_result.log | wc -l 150可以看到在并发调用的情况下,生成的计数也保证唯一。
更多关于PHP相关内容感兴趣的读者可查看本站专题:《php+redis数据库程序设计技巧总结》、《php面向对象程序设计入门教程》、《PHP基本语法入门教程》、《PHP数组(Array)操作技巧大全》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。
标签:PHP,redis,计数器类
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“PHP基于redis计数器类定义与用法示例”评论...