zoukankan      html  css  js  c++  java
  • webbench安装和简单使用

    一、安装流程

    wget http://home.tiscali.cz/~cz210552/distfiles/webbench-1.5.tar.gz

    tar zxvf webbench-1.5.tar.gz

    cd webbech-1.5

    make

    make install
    常见问题:

    (1)错误信息一:

    /bin/sh: 1: ctags: not found Makefile:12: recipe for target 'tags' failed

    解决办法:sudo apt-get install ctags

    (2)错误信息二:
    make: Nothing to be done for `all'这句提示是说明你已经编译好了,而且没有对代码进行任何改动。

    若想重新编译,可以先删除以前编译产生的目标文件:
    make clean
    然后再
    make
     
    二、使用流程
    webbench -c 100 -t 10 http://www.yctech.com

    webbench -c 并发数 -t 运行测试时间 URL

    按照这个公式直接套用即可,

    结果如下:

    Webbench - Simple Web Benchmark 1.5
    Copyright (c) Radim Kolar 1997-2004, GPL Open Source Software.
    
    Benchmarking: GET http://www.yctech.com/
    100 clients, running 10 sec.
    
    Speed=972 pages/min, 145303 bytes/sec.
    Requests: 162 susceed, 0 failed.
  • 相关阅读:
    P1891 疯狂LCM
    P2568 GCD
    P1516 青蛙的约会和P2421 [NOI2002]荒岛野人
    P4168 蒲公英
    P5960 差分约束算法模板
    P2024 食物链(种类并查集)
    CF1328E Tree Queries
    CF1328B K-th Beautiful String
    dij-spfa乱搞
    P1993 小K的农场
  • 原文地址:https://www.cnblogs.com/youcong/p/10110378.html
Copyright © 2011-2022 走看看