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
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="JTigerNova.jtiger.util.io" Version="1.0.3" />
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="JTigerNova.jtiger.util.io" Version="1.0.3" />
 
Directory.Packages.props
<PackageReference Include="JTigerNova.jtiger.util.io" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add JTigerNova.jtiger.util.io --version 1.0.3
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: JTigerNova.jtiger.util.io, 1.0.3"
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package JTigerNova.jtiger.util.io@1.0.3
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=JTigerNova.jtiger.util.io&version=1.0.3
 
Install as a Cake Addin
#tool nuget:?package=JTigerNova.jtiger.util.io&version=1.0.3
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

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() and Error() 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:

  1. Attempts to rename current file to {filename}.old
  2. Falls back to truncation if rename fails (file locked)
  3. 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 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.
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .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.

Version Downloads Last Updated
1.0.3 614 5/20/2026
1.0.2 429 3/20/2026

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