summaryrefslogtreecommitdiff
path: root/toys/Makefile
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2016-04-10 18:42:27 -0400
committerKali Kaneko (leap communications) <kali@leap.se>2016-04-10 18:42:27 -0400
commitc5de6f188dac491f114861648aafb30737da131f (patch)
tree327e20cabbbee4a656c4c57219b63fb0e501416d /toys/Makefile
parentd3604a9a53a04af8c34d08f17b4708c460f76be9 (diff)
move PoCs to its own subdir
Diffstat (limited to 'toys/Makefile')
-rw-r--r--toys/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/toys/Makefile b/toys/Makefile
new file mode 100644
index 0000000..33761a1
--- /dev/null
+++ b/toys/Makefile
@@ -0,0 +1,20 @@
+# Simple PoC toys
+
+perf:
+ httperf --server localhost --port 8080 --num-calls 200 --num-conns 20 --uri /
+
+perf-little:
+ httperf --server localhost --port 8080 --num-calls 5 --num-conns 20 --uri /
+
+perf-easy:
+ httperf --server localhost --port 8080 --num-calls 5 --num-conns 20 --uri /hi
+
+inline-server:
+ python server.py
+
+thread-server:
+ python server2.py
+
+ampoule-server:
+ python server3.py
+