ktsu.Containers 1.0.6
ktsu.Containers
A high-performance collection library for .NET providing specialized container implementations with focus on performance, memory efficiency, and developer experience.
🚀 Features
- OrderedCollection
: Maintains elements in sorted order with efficient binary search operations - OrderedSet
: Unique elements maintained in sorted order with full ISet support - RingBuffer
: Fixed-size circular buffer optimized for streaming data scenarios - Comprehensive Benchmarking: World-class performance validation against .NET collections
📦 Collections
OrderedCollection
A collection that maintains elements in sorted order with efficient insertion and search operations.
Key Features:
- O(log n) insertion maintaining sort order
- O(log n) search operations via binary search
- Multiple constructors with capacity and comparer support
- Implements ICollection
, IReadOnlyCollection , IReadOnlyList
Best Use Cases:
- Incremental sorted data building
- Frequent search operations on ordered data
- Scenarios requiring both order and random access
OrderedSet
A set implementation that maintains unique elements in sorted order.
Key Features:
- O(log n) Add/Remove/Contains operations
- Full ISet
interface support (Union, Intersection, Except, etc.) - Sorted enumeration without additional sorting cost
- Memory-efficient list-based implementation
Best Use Cases:
- Unique sorted collections
- Set operations with maintained order
- Mathematical set operations with sorted results
RingBuffer
A fixed-size circular buffer optimized for continuous data streams.
Key Features:
- O(1) insertion and access operations
- Automatic wrapping when capacity is reached
- Index-based access to buffer elements
- Resizing and resampling capabilities
- Power-of-two sizing for optimal performance
Best Use Cases:
- Streaming data processing
- Fixed-size caches
- Sliding window algorithms
- Audio/signal processing buffers
🏆 Performance & Benchmarking
We've implemented a comprehensive benchmarking system using BenchmarkDotNet that validates our implementations against standard .NET collections.
Benchmark Categories
🎯 Container-Specific Benchmarks
- OrderedCollection vs List
+ Sort vs SortedList - OrderedSet vs HashSet
vs SortedSet - RingBuffer vs Queue
vs List with size limiting
📊 Standard Collection Baselines
Performance baselines for all major .NET collections:
- List
, HashSet , SortedSet - Dictionary<TKey,TValue>, SortedDictionary<TKey,TValue>
- Queue
, Stack - ConcurrentDictionary<TKey,TValue>, ConcurrentQueue
🔄 Cross-Collection Comparisons
Direct comparisons for common scenarios:
- Building ordered collections (incremental vs bulk)
- Set operations across different implementations
- Memory efficiency patterns
- Real-world usage workflows
📈 Performance Analysis
Advanced scenarios including:
- Scalability testing (1K to 100K+ elements)
- Edge cases and worst-case scenarios
- Memory pressure analysis
- Specialized use cases (sliding windows, priority queues)
Running Benchmarks
Quick Start
# Fast development feedback
.\scripts\run-benchmarks.ps1 -Target Quick
# Compare specific containers
.\scripts\run-benchmarks.ps1 -Target OrderedSet -Export Html
# Cross-collection analysis
.\scripts\run-benchmarks.ps1 -Target CrossComparison -Export All
# Full benchmark suite
.\scripts\run-benchmarks.ps1 -Target All -Export Html
Available Targets
| Target | Description |
|---|---|
Quick |
Fast subset for development feedback |
OrderedCollection |
OrderedCollection |
OrderedSet |
OrderedSet |
RingBuffer |
RingBuffer |
Standard |
Built-in .NET collection baselines |
CrossComparison |
Direct cross-collection comparisons |
PerformanceAnalysis |
Scalability and edge case analysis |
All |
Complete benchmark suite |
Command Line Options
# Manual benchmark execution
dotnet run --project Containers.Benchmarks --configuration Release
# Filtered benchmarks
dotnet run --project Containers.Benchmarks --configuration Release -- --filter "*Add*"
# Export results
dotnet run --project Containers.Benchmarks --configuration Release -- --exporters html,csv,json
📋 Installation
<PackageReference Include="ktsu.Containers" Version="1.0.0" />
🔧 Usage Examples
OrderedCollection
// Create and populate
var collection = new OrderedCollection<int>();
collection.Add(3);
collection.Add(1);
collection.Add(2);
// Collection automatically maintains order: [1, 2, 3]
// Efficient search
bool contains = collection.Contains(2); // O(log n) binary search
// Access by index
int first = collection[0]; // 1
OrderedSet
// Create with initial data
var set = new OrderedSet<int> { 3, 1, 4, 1, 5 };
// Set contains unique elements in order: [1, 3, 4, 5]
// Set operations
var other = new OrderedSet<int> { 4, 5, 6 };
set.UnionWith(other); // [1, 3, 4, 5, 6]
RingBuffer
// Create fixed-size buffer
var buffer = new RingBuffer<int>(3);
buffer.PushBack(1);
buffer.PushBack(2);
buffer.PushBack(3);
buffer.PushBack(4); // Overwrites first element
// Buffer contains: [2, 3, 4]
// Index access
int latest = buffer[buffer.Count - 1]; // 4 (most recent)
🛠️ Development
Building
dotnet build
Testing
dotnet test
Benchmarking
# Quick performance check
.\scripts\run-benchmarks.ps1 -Target Quick
# Comprehensive analysis
.\scripts\run-benchmarks.ps1 -Target All -Export Html
📊 Performance Characteristics
OrderedCollection
- ✅ Excellent for: Incremental sorted insertions, frequent searches
- ⚠️ Consider alternatives for: Large bulk operations (List
+ Sort may be faster) - 🎯 Sweet spot: 100-10,000 elements with mixed insert/search operations
OrderedSet
- ✅ Excellent for: Unique sorted collections, set operations with order
- ⚠️ Consider alternatives for: Pure membership testing (HashSet
is faster) - 🎯 Sweet spot: Mathematical set operations requiring sorted results
RingBuffer
- ✅ Excellent for: Streaming data, fixed-size caches, sliding windows
- ⚠️ Consider alternatives for: Dynamic growth requirements
- 🎯 Sweet spot: Continuous data streams with occasional random access
🤝 Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add comprehensive tests
- Run benchmarks to validate performance
- Submit a pull request
Adding New Containers
When adding new containers:
- Implement the container in
Containers/ - Add comprehensive tests in
Containers.Test/ - Create benchmark comparisons in
Containers.Benchmarks/ - Update documentation
📝 License
Licensed under the MIT License. See LICENSE.md for details.
🏗️ Architecture
The library is built with performance and reliability in mind:
- Zero-allocation operations where possible
- Power-of-two sizing for optimal memory access patterns
- Binary search algorithms for O(log n) performance
- Comprehensive test coverage ensuring reliability
- Benchmark-driven development validating performance claims
🎯 Design Principles
- Performance First: Every operation is optimized for speed and memory efficiency
- Standard Compliance: Full compatibility with .NET collection interfaces
- Predictable Behavior: Clear performance characteristics and edge case handling
- Developer Experience: Intuitive APIs with comprehensive documentation
- Validation: Extensive testing and benchmarking ensures reliability
This library provides high-performance alternatives to standard .NET collections while maintaining familiar APIs and adding specialized functionality for common use cases.
Showing the top 20 packages that depend on ktsu.Containers.
| Packages | Downloads |
|---|---|
|
Containers.Benchmarks
Package Description
|
19 |
.NET 5.0
- No dependencies.
.NET 6.0
- No dependencies.
.NET 7.0
- No dependencies.
.NET 8.0
- No dependencies.
.NET 9.0
- No dependencies.
.NET Standard 2.0
- System.Memory (>= 4.6.3)
- System.Threading.Tasks.Extensions (>= 4.6.3)
.NET Standard 2.1
- System.Memory (>= 4.6.3)
| Version | Downloads | Last updated |
|---|---|---|
| 1.0.8-pre.3 | 16 | 11/24/2025 |
| 1.0.8-pre.2 | 13 | 11/23/2025 |
| 1.0.8-pre.1 | 14 | 11/23/2025 |
| 1.0.7 | 14 | 11/23/2025 |
| 1.0.7-pre.1 | 13 | 11/23/2025 |
| 1.0.6 | 13 | 11/23/2025 |