高性能c++日志库 Easylogging++
- 授权协议: MIT
- 开发语言: C/C++
- 操作系统: 跨平台
- 软件首页: http://easylogging.org/
- 软件文档: https://github.com/easylogging/easyloggingpp/blob/master/README.md
- 官方下载: http://easylogging.org/latest.zip
软件介绍
轻量级高性能c++日志库 (Single header only)
Easylogging++的优势是它的速度和简单。 它是轻量级的,健壮的,高性能,线程和类型安全的,它有许多内置功能。它适合在中小型项目中使用,它提供了自定义日志格式的能力,还提供对第三方库,STL容器的支持。
示例代码:
#include "easylogging++.h"
_INITIALIZE_EASYLOGGINGPP
int main(int argv, const char** argc) {
LOG(INFO) << "Hello, world";
return 0;
}
Writing Apache Modules with Perl and C
Lincoln Stein、Doug MacEachern / O'Reilly Media, Inc. / 1999-03 / USD 39.95
Apache is the most popular Web server on the Internet because it is free, reliable, and extensible. The availability of the source code and the modular design of Apache makes it possible to extend Web......一起来看看 《Writing Apache Modules with Perl and C》 这本书的介绍吧!
