zoukankan      html  css  js  c++  java
  • sysbench的简单安装

    1. 下载

    可以到网站上面找 我用到的这个是201908最新的

    wget https://src.fedoraproject.org/repo/pkgs/sysbench/sysbench-1.0.17.tar.gz/sha512/95a6bb7ec9b0fb111bf2844e110b8fb51c006fd68b5bac75c1b80e2ed18e839d6f07f79d55fb5adef67b41d00f67bbf659d129d1cb593d4fd118092b15431815/sysbench-1.0.17.tar.gz

    2. 解压缩

    tar -zxvf sysbench-1.0.17.tar.gz

    3. 执行安装

     cd sysbench-1.0.17/
    
    ./autogen.sh
    
    ./configure --without-mysql
    
    make && make install

    4. 简单测试内存读写性能

    [root@CentOS76 sysbench-1.0.17]# sysbench --test=memory --memory-block-size=8k --memory-total-size=12G run
    WARNING: the --test option is deprecated. You can pass a script name or path on the command line without any options.
    sysbench 1.0.17 (using bundled LuaJIT 2.1.0-beta2)
    
    Running the test with following options:
    Number of threads: 1
    Initializing random number generator from current time
    
    
    Running memory speed test with the following options:
      block size: 8KiB
      total size: 12288MiB
      operation: write
      scope: global
    
    Initializing worker threads...
    
    Threads started!
    
    Total operations: 1572864 (1022885.10 per second)
    
    12288.00 MiB transferred (7991.29 MiB/sec)
    
    
    General statistics:
        total time:                          1.5351s
        total number of events:              1572864
    
    Latency (ms):
             min:                                    0.00
             avg:                                    0.00
             max:                                    1.10
             95th percentile:                        0.00
             sum:                                 1250.26
    
    Threads fairness:
        events (avg/stddev):           1572864.0000/0.00
        execution time (avg/stddev):   1.2503/0.00
  • 相关阅读:
    7503E-M-irf2配置以及bfd配置
    nltk_29_pickle保存和导入分类器
    nltk_28Twitter情感分析模型
    美国在研新药_读取单个PDF
    Python:eval的妙用和滥用
    opencv_判断两张图片是否相同
    Make 命令教程
    pdf在线处理网站
    K-Means clusternig example with Python and Scikit-learn(推荐)
    自然语言27_Converting words to Features with NLTK
  • 原文地址:https://www.cnblogs.com/jinanxiaolaohu/p/11406639.html
Copyright © 2011-2022 走看看