LuciferCore 6.1.0
Prefix Reserveddotnet add package LuciferCore --version 6.1.0
NuGet\Install-Package LuciferCore -Version 6.1.0
<PackageReference Include="LuciferCore" Version="6.1.0" />
<PackageVersion Include="LuciferCore" Version="6.1.0" />
<PackageReference Include="LuciferCore" />
paket add LuciferCore --version 6.1.0
#r "nuget: LuciferCore, 6.1.0"
#:package LuciferCore@6.1.0
#addin nuget:?package=LuciferCore&version=6.1.0
#tool nuget:?package=LuciferCore&version=6.1.0
LuciferCore
LuciferCore is the pure performance microkernel of the LuciferCore ecosystem — a zero-allocation, event-driven foundation for .NET.
What's inside
Buffer-Model architecture Network payloads flow through contiguous, pooled buffers — cache-friendly, low-GC.
Lightweight static DI (
DIExtensions) Compiled-expression based resolution, minimal runtime reflection overhead.ObjectPoolAPI Unified pooling for objects andArrayPool<byte>-backed buffers (PooledObject.cs).Event-driven network transports TCP / UDP / SSL / UDS, plus ready HTTP, HTTPS, WS, WSS clients, servers, and sessions — pure event-driven I/O, allocation-conscious.
Design Philosophy
LuciferCore follows Data-Oriented Design (DOD) for the hot path (buffers, transports, pooling) while keeping the public surface (Session, Request, Response) approachable with light OOP.
If you need declarative routing ([Handler], [HttpGet], [Message]), middleware pipelines, managers, or a CLI runtime, add LuciferCore.Platforms on top:
dotnet add package LuciferCore
dotnet add package LuciferCore.Platforms
Installation
dotnet add package LuciferCore
License
LuciferCore uses dual licensing:
- AGPL-3.0 (open-source / evaluation)
- Commercial License (for closed-source or enterprise use)
Author
- Nguyen Minh Thuan (thuangf45)
- Portfolio: https://thuangf45.github.io
- LinkedIn: https://www.linkedin.com/in/thuangf45
- GitHub: https://github.com/thuangf45
- Blog: https://dev.to/thuangf45
- Email: kingnemacc@gmail.com
- NuGet: https://www.nuget.org/profiles/thuangf45
- Repository: https://github.com/thuangf45/LuciferCore
- Documentation: https://bufmod.gitbook.io/lucifercore
- Store: https://bufmod.lemonsqueezy.com/
A pure, zero-allocation microkernel — the engine, not the vehicle.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. 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. |
-
net9.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
refactor(core): strip application runtime facade and migrate to ObjectPool API
BREAKING CHANGE: Completely decoupled runtime facade (Lucifer), bootstrap/config helpers, attribute-driven routing, and platform utilities into LuciferCore.Platforms; Core now exclusively serves as a high-performance zero-allocation microkernel.
- Migrated `Lucifer` facade, platform helpers (bootstrap, config, CMD, plugins), and app attributes to LuciferCore.Platforms.
- Replaced direct `Lucifer.Rent/Return` and ambiguous `Pool<T>` usage with the streamlined `ObjectPool` API (`PooledObject.cs`).
- Extracted dynamic model registration and resolution logic into `DIExtensions`.
- Removed legacy `UltityAttribute` bundles and duplicate utility/extension files.
- Refined assembly surface: Core now only retains raw Memory/Buffer, Network Transports (TCP/UDP/SSL/UDS), ObjectPool, Storage, Utf8 primitives, and Buffer-Model bindings.