JTigerNova.jtiger.util.io
1.0.3
dotnet add package JTigerNova.jtiger.util.io --version 1.0.3
NuGet\Install-Package JTigerNova.jtiger.util.io -Version 1.0.3
<PackageReference Include="JTigerNova.jtiger.util.io" Version="1.0.3" />
<PackageVersion Include="JTigerNova.jtiger.util.io" Version="1.0.3" />Directory.Packages.props
<PackageReference Include="JTigerNova.jtiger.util.io" />Project file
paket add JTigerNova.jtiger.util.io --version 1.0.3
#r "nuget: JTigerNova.jtiger.util.io, 1.0.3"
#:package JTigerNova.jtiger.util.io@1.0.3
#addin nuget:?package=JTigerNova.jtiger.util.io&version=1.0.3Install as a Cake Addin
#tool nuget:?package=JTigerNova.jtiger.util.io&version=1.0.3Install as a Cake Tool
JTiger.Util.IO
High-performance IO utilities for .NET applications.
FastFileLogger
A high-throughput, non-blocking file logger designed for production workloads.
Features
- Non-blocking writes:
Log()andError()enqueue messages instantly and return - Background writer: Single dedicated task handles all file I/O
- Automatic rotation: Rotates log files when size exceeds threshold (default 1MB)
- Retry with backoff: Handles transient file locks gracefully
- Graceful shutdown: Flushes remaining messages on dispose
- Thread-safe: Safe to call from multiple threads concurrently
Quick Start
using jtiger.util.io;
// Create logger
using var logger = new FastFileLogger("logs/app.log");
// Log messages (non-blocking)
logger.Log("Application started");
logger.Error("Something went wrong", exception);
Configuration
var logger = new FastFileLogger(
path: "logs/app.log",
maxBytes: 10 * 1024 * 1024, // Rotate at 10MB (default: 1MB)
maxBatchLines: 256, // Max lines per batch (default: 256)
maxBatchBytes: 64 * 1024, // Max bytes per batch (default: 64KB)
maxWriteRetries: 6, // Retry attempts on failure (default: 6)
baseRetryDelayMs: 10, // Base retry delay (default: 10ms)
maxRequeueAttempts: 3, // Max requeue on failure (default: 3)
maxMessageLength: 16 * 1024, // Max message length (default: 16KB)
onWriteError: ex => Console.Error.WriteLine($"Log write failed: {ex.Message}")
);
Log Format
Tab-delimited format for easy parsing:
2024年01月15日T10:30:00.0000000+00:00 INFO T12 Application started
2024年01月15日T10:30:01.0000000+00:00 ERROR T12 Database connection failed EX:System.Exception: Connection timeout...
File Rotation
When the log file exceeds maxBytes:
- Attempts to rename current file to
{filename}.old - Falls back to truncation if rename fails (file locked)
- Continues appending if both fail (retries on next write)
Thread Safety
All public methods are thread-safe. Multiple threads can call Log() and Error() concurrently without synchronization.
Disposal
Always dispose the logger to ensure remaining messages are flushed:
// Using statement (recommended)
using var logger = new FastFileLogger("app.log");
// Or explicit dispose
logger.Dispose();
The logger waits up to 5 seconds during disposal to flush queued messages.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 is compatible. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.8
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
NuGet packages (3)
Showing the top 3 NuGet packages that depend on JTigerNova.jtiger.util.io:
| Package | Downloads |
|---|---|
|
JTigerNova.Web.Lib.Service.JTigerNova
Library of standard web service functions and support |
|
|
JTigerNova.Web.Lib.Website.JTigerNova
Standard website operations |
|
|
JTigerNova.Web.Lib.Service.Automaton
Library for building automated tasks run via a Windows service |
GitHub repositories
This package is not used by any popular GitHub repositories.
v1.0.3:
- IFastFileLogger: new interface for FastFileLogger
v1.0.0:
- FastFileLogger: High-throughput async file logger
- Non-blocking Log/Error methods
- Automatic file rotation
- Retry with exponential backoff
- Configurable batch size and message limits
- Thread-safe operation
- Graceful shutdown with flush