From 51d779256c74cc541da306db5629ed510df5a944 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Tue, 27 Apr 2021 13:45:54 +0200 Subject: Switched from slow blocking cpp-httplib to libevent2. Signed-off-by: Toni Uhlig --- deps/cpp-httplib/example/benchmark.cc | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 deps/cpp-httplib/example/benchmark.cc (limited to 'deps/cpp-httplib/example/benchmark.cc') diff --git a/deps/cpp-httplib/example/benchmark.cc b/deps/cpp-httplib/example/benchmark.cc deleted file mode 100644 index 8e300b9..0000000 --- a/deps/cpp-httplib/example/benchmark.cc +++ /dev/null @@ -1,33 +0,0 @@ -#include -#include -#include - -using namespace std; - -struct StopWatch { - StopWatch(const string &label) : label_(label) { - start_ = chrono::system_clock::now(); - } - ~StopWatch() { - auto end = chrono::system_clock::now(); - auto diff = end - start_; - auto count = chrono::duration_cast(diff).count(); - cout << label_ << ": " << count << " millisec." << endl; - } - string label_; - chrono::system_clock::time_point start_; -}; - -int main(void) { - string body(1024 * 5, 'a'); - - httplib::Client cli("httpbin.org", 80); - - for (int i = 0; i < 3; i++) { - StopWatch sw(to_string(i).c_str()); - auto res = cli.Post("/post", body, "application/octet-stream"); - assert(res->status == 200); - } - - return 0; -} -- cgit v1.2.3