增加 performan 测试

This commit is contained in:
pengxuanzheng
2020-10-14 15:23:01 +08:00
parent 8a35250d21
commit 3f38cefc5e
58 changed files with 659 additions and 41 deletions

16
example/demo/data/test_times.sh Executable file
View File

@@ -0,0 +1,16 @@
#########################################################################
# File Name: test_times.sh
# Author: pxz
# Created Time: Mon 21 Sep 2020 04:43:35 PM CST
#########################################################################
#!/bin/bash
test_times=(1, 10, 100, 1000, 10000)
num=0
while((${num} < 5))
do
echo ./hos_write_complete mybucket 1k.data ${test_times[$num]}
./hos_write_complete mybucket 1k.data ${test_times[$num]}
let "num++"
done