码迷,mamicode.com
首页 >  
搜索关键字:factstone benchmark    ( 438个结果
【Python技巧系列】argparser处理字典
看scikit-learn的源码时,在benchmark的benchmark_20newsgroups.py(关于20newsgroups数据集看这里)中看到了一个有意思的用法,如下: 1 import argparse 2 3 ESTIMATORS = { 4 "dummy": Dumm...
分类:编程语言   时间:2015-09-23 18:45:04    阅读次数:155
[转载] Redis-benchmark使用总结
转载自http://blog.csdn.net/jiangguilong2000/article/details/24143721Redis-benchmark为Redis性能测试工具。指令说明:Usage:redis-benchmark[-h][-p][-c][-n[-k]-hServerhost...
分类:其他好文   时间:2015-09-16 19:24:51    阅读次数:152
thttpd增加gzip压缩响应报文体功能,以减少传输数据量
thttpd thttpd是一个非常小巧的轻量级web server,它非常非常简单,仅仅提供了HTTP/1.1和简单的CGI支持,在其官方网站上有一个与其他web server(如Apache, Zeus等)的对比图+Benchmark,可以参考参考。此外,thttpd 也类似于lighttpd,...
分类:Web程序   时间:2015-09-12 06:13:13    阅读次数:301
weedfs的benchmark测试数据,仅供参考
weedfs 性能测试机器A 192.168.174.129Intel(R) Xeon(R) CPU E5-4620 0 @ 2.20GHzcpu cores : 8SMT:864核MEM : 132G机器B192.168.174.130Intel(R) Xeon(R) CPU E7- 4807 @...
分类:其他好文   时间:2015-09-10 12:57:17    阅读次数:556
LUBM (Lehigh university benchmark) tutorial
This little tutorial teaches you step by step how to use LUBM to benchmark your semantic system.1. Here is the official site of LUBM:http://swat.cse.l...
分类:其他好文   时间:2015-09-09 06:16:42    阅读次数:331
使用apache benchmark(ab) 测试报错汇总
1、socket:Toomanyopenfiles(24)解决方法:[root@zabbix ~]# ulimit -acore file size (blocks, -c) 0data seg size (kbytes, -d) unlimitedschedu...
分类:Web程序   时间:2015-09-08 21:47:51    阅读次数:199
win7下安装redies
https://github.com/MSOpenTech/redis打开以后,可以直接使用浏览器下载,或者git克隆。注意:下载release版解压后,目录下有以下这些文件:redis-benchmark.exe#基准测试redis-check-aof.exe#aofredis-check-dum...
分类:Windows程序   时间:2015-08-25 13:48:11    阅读次数:152
POJ 2661-Factstone Benchmark(log()的应用)
题目地址:POJ 2661 题意:从1960年开始,每10年更新一次计算机的最长存储位数,其中,最开始的1960年字长为4位,以后每隔10年就增长一倍的长度。给你一个年份,问这一年时,计算机可以执行n!而不溢出的最大的n值。 思路:第n年的位数k=2^(2+(y-1960)/10),能放在k位中最大的无符号整数是(2^k)-1,如果是直接求不大于(2^k)-1的n!很容易溢出且速度慢,那么我们就...
分类:其他好文   时间:2015-08-17 17:26:45    阅读次数:121
互斥锁、自旋锁、dispatch_once性能对比
代码:#import #import extern uint64_t dispatch_benchmark(size_t count, void (^block)(void));// pthread_mutex_lockvoid dispatch_once_pthread(dispatch_once...
分类:其他好文   时间:2015-08-16 18:10:39    阅读次数:180
Python3.x 和Python2.x 区别
1.性能Py3.0运行 pystone benchmark的速度比Py2.5慢30%。Guido认为Py3.0有极大的优化空间,在字符串和整形操作上可以取得很好的优化结果。Py3.1性能比Py2.5慢15%,还有很大的提升空间。2.编码Py3.X源码文件默认使用utf-8编码,这就使得以下代码是合法...
分类:编程语言   时间:2015-08-11 13:51:54    阅读次数:148
438条   上一页 1 ... 30 31 32 33 34 ... 44 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!