Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tensorbase/baselog
High performance sync style Rust logging facility dedicated for Linux
https://github.com/tensorbase/baselog
high-performance linux lock-free log logging rust rust-lang sync
Last synced: 3 months ago
JSON representation
High performance sync style Rust logging facility dedicated for Linux
- Host: GitHub
- URL: https://github.com/tensorbase/baselog
- Owner: tensorbase
- License: apache-2.0
- Created: 2020-09-21T02:14:07.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-19T10:36:25.000Z (almost 4 years ago)
- Last Synced: 2023-03-08T02:14:47.699Z (almost 2 years ago)
- Topics: high-performance, linux, lock-free, log, logging, rust, rust-lang, sync
- Language: Rust
- Homepage:
- Size: 16.6 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## High performance sync style Rust logging facility dedicated for Linux
Baselog is modified from the [simplelog](https://github.com/Drakulix/simplelog.rs).
Plus a little more we want:
1. highest performance under Linux (but without async)
+ lock free and nvme disk bandwidth saturation
2. file rotating support
3. loggers opt-ins are more flexible### Why `no async`?
In fact, high performance logging is a false proposition.What we want is to maximize the total performance of a system with minimized logging overheads.
### License
Baselog is distributed under the terms of the Apache License (Version 2.0).### Credits
* [simplelog](https://github.com/Drakulix/simplelog.rs)