修改并增加新接口

This commit is contained in:
pengxuanzheng
2020-09-21 19:19:18 +08:00
parent a00d892928
commit eb41917cb2
22 changed files with 1916 additions and 106 deletions

15
example/test_times.sh Executable file
View File

@@ -0,0 +1,15 @@
#########################################################################
# 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
./singleThread mybucket my-file.txt ${test_times[$num]}
let "num++"
done