.NEXT (dotNext) is a set of powerful libraries designed for high-performance scenarios when your application expects near zero memory allocation and high flexibility. It is aimed to high-load microservices, database engines, actors, and various types of distributed applications. The feature list includes a rich set of efficient tools with low overhead:
- Buffer manipulations
- String building
- Monadic types
- Advanced GC notifications
- Low-level API to work with memory: alignment detection, type-safe unmanaged allocators, Span<T> manipulations
- Base64 streaming encoder/decoder
- Async-friendly SIEVE cache
- Async locks
- Extended LINQ Expression Trees and dynamic code generation tools with async lambdas for metaprogramming
- Raft Consensus Algorithm with extensions such as the failure detection
- Fast general-purpose Write Ahead Log
- TCP multiplexing protocol
- HyParView protocol implementation
All these things are implemented in 100% managed code on top of existing .NET API.
Release Date: 07-26-2026
- Improved performance of
Atomic<T>type: multiple readers don't contend anymore - Introduced write lock scope to
Atomic<T>data type ReaderWriterSpinLockis deprecated in favor ofAtomic<T>struct- Fixed AOT compatibility for
BoxedValue<T>andUserDataStoragetypes - Removed lock contention when reading from
UserDataStorage - Improved performance of
TypeMapandConcurrentTypeMaptypes BufferWriterSlim<T>can be constructed with a fixed capacity
- All methods accepting variadic arguments as
params Expression[] argsnow changed toparams IEnumerable<Expression> args AsDynamic()extension method is deprecated in favor ofQuotedextension property and extension operators
- Updated dependencies
- Improved performance of
AsyncStateTrackertype - Perf improvements:
ManualResetCompletionSourceinternals moved toBoxedValue<T>type to avoid redundant type check
- Introduced
Limitextension method for all classes implementing IBufferWriter<T> interface. The method returns the wrapper that limits the capacity of the underlying writer EndPointFormattertype is moved fromDotNext.Net.Clusterlibrary
EndPointFormattertype is moved toDotNext.IOlibrary
DotNext.AspNetCore.Cluster 6.5.0
- Updated dependencies
DotNext.MaintenanceServices 1.5.0
- Updated dependencies
The libraries are versioned according to Semantic Versioning 2.0.
| Version | .NET compatibility | Support Level |
|---|---|---|
| 0.x | .NET Standard 2.0 | ❌ |
| 1.x | .NET Standard 2.0 | ❌ |
| 2.x | .NET Standard 2.1 | ❌ |
| 3.x | .NET Standard 2.1, .NET 5 | ❌ |
| 4.x | .NET 6 | ❌ |
| 5.x | .NET 8 | ✅ |
| 6.x | .NET 10 | ✔️ |
❌ - unsupported, ✅ - bug and security fixes only, ✔️ - active development
Philosophy of development process:
- All libraries in .NEXT family are available for various .NET form factors: Mono, WASM, NativeAOT
- Minimal set of dependencies
- Provide high-quality documentation
- Stay cross-platform
- Provide benchmarks
.NEXT is used by several companies in their projects:
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the .NET Foundation Code of Conduct. For more information see the Code of Conduct FAQ or contact conduct@dotnetfoundation.org with any additional questions or comments.