summaryrefslogtreecommitdiff
path: root/example/data
diff options
context:
space:
mode:
Diffstat (limited to 'example/data')
-rw-r--r--example/data/100k.databin0 -> 102400 bytes
-rw-r--r--example/data/10k.databin0 -> 10240 bytes
-rw-r--r--example/data/1M.databin0 -> 1048576 bytes
-rw-r--r--example/data/1k.databin0 -> 1024 bytes
-rw-r--r--example/data/2M.databin0 -> 2097152 bytes
-rw-r--r--example/data/3M.databin0 -> 3145728 bytes
-rw-r--r--example/data/4M.databin0 -> 4194304 bytes
-rwxr-xr-xexample/data/test_size.sh15
8 files changed, 15 insertions, 0 deletions
diff --git a/example/data/100k.data b/example/data/100k.data
new file mode 100644
index 00000000..da1dfb90
--- /dev/null
+++ b/example/data/100k.data
Binary files differ
diff --git a/example/data/10k.data b/example/data/10k.data
new file mode 100644
index 00000000..9df64990
--- /dev/null
+++ b/example/data/10k.data
Binary files differ
diff --git a/example/data/1M.data b/example/data/1M.data
new file mode 100644
index 00000000..9e0f96a2
--- /dev/null
+++ b/example/data/1M.data
Binary files differ
diff --git a/example/data/1k.data b/example/data/1k.data
new file mode 100644
index 00000000..06d74050
--- /dev/null
+++ b/example/data/1k.data
Binary files differ
diff --git a/example/data/2M.data b/example/data/2M.data
new file mode 100644
index 00000000..3301331b
--- /dev/null
+++ b/example/data/2M.data
Binary files differ
diff --git a/example/data/3M.data b/example/data/3M.data
new file mode 100644
index 00000000..b7f1f882
--- /dev/null
+++ b/example/data/3M.data
Binary files differ
diff --git a/example/data/4M.data b/example/data/4M.data
new file mode 100644
index 00000000..98fc2c0b
--- /dev/null
+++ b/example/data/4M.data
Binary files differ
diff --git a/example/data/test_size.sh b/example/data/test_size.sh
new file mode 100755
index 00000000..7dd3b3d1
--- /dev/null
+++ b/example/data/test_size.sh
@@ -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_size=("1k" "10k" "100k" "1M" "2M" "3M" "4M")
+num=0
+
+while((${num} < 7))
+do
+ ./singleThread mybucket ${test_size[$num]}.data 1000
+ let "num++"
+done
+