|
|
@ -64,7 +64,7 @@ int main(int argc, char* argv[])
|
|
|
|
if (argc > 2)
|
|
|
|
if (argc > 2)
|
|
|
|
threads = atoi(argv[2]);
|
|
|
|
threads = atoi(argv[2]);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
cout << "*******************************************************************************\n";
|
|
|
|
cout << "*******************************************************************************\n";
|
|
|
|
cout << "Single thread, " << format(howmany) << " iterations, auto flush=" << auto_flush << endl;
|
|
|
|
cout << "Single thread, " << format(howmany) << " iterations, auto flush=" << auto_flush << endl;
|
|
|
|
cout << "*******************************************************************************\n";
|
|
|
|
cout << "*******************************************************************************\n";
|
|
|
@ -87,7 +87,6 @@ int main(int argc, char* argv[])
|
|
|
|
bench_mt(howmany, daily_mt, threads);
|
|
|
|
bench_mt(howmany, daily_mt, threads);
|
|
|
|
bench(howmany, spdlog::create<null_sink_st>("null_mt"));
|
|
|
|
bench(howmany, spdlog::create<null_sink_st>("null_mt"));
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
cout << "\n*******************************************************************************\n";
|
|
|
|
cout << "\n*******************************************************************************\n";
|
|
|
|
cout << "async logging.. " << threads << " threads sharing same logger, " << format(howmany) << " iterations, auto_flush=" << auto_flush << endl;
|
|
|
|
cout << "async logging.. " << threads << " threads sharing same logger, " << format(howmany) << " iterations, auto_flush=" << auto_flush << endl;
|
|
|
|
cout << "*******************************************************************************\n";
|
|
|
|
cout << "*******************************************************************************\n";
|
|
|
@ -95,10 +94,9 @@ int main(int argc, char* argv[])
|
|
|
|
|
|
|
|
|
|
|
|
spdlog::set_async_mode(howmany);
|
|
|
|
spdlog::set_async_mode(howmany);
|
|
|
|
|
|
|
|
|
|
|
|
for(int i = 0; i < 5; ++i)
|
|
|
|
for(int i = 0; i < 3; ++i)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
//auto as = spdlog::daily_logger_st("as", "logs/daily_async", auto_flush);
|
|
|
|
auto as = spdlog::daily_logger_st("as", "logs/daily_async", auto_flush);
|
|
|
|
auto as = spdlog::create<null_sink_st>("as");
|
|
|
|
|
|
|
|
bench_mt(howmany, as, threads);
|
|
|
|
bench_mt(howmany, as, threads);
|
|
|
|
spdlog::drop("as");
|
|
|
|
spdlog::drop("as");
|
|
|
|
}
|
|
|
|
}
|
|
|
|