TC.Tier.Runtime
1.0.0-alpha.2
This is a prerelease version of TC.Tier.Runtime.
dotnet add package TC.Tier.Runtime --version 1.0.0-alpha.2
NuGet\Install-Package TC.Tier.Runtime -Version 1.0.0-alpha.2
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="TC.Tier.Runtime" Version="1.0.0-alpha.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TC.Tier.Runtime" Version="1.0.0-alpha.2" />
<PackageReference Include="TC.Tier.Runtime" />
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 TC.Tier.Runtime --version 1.0.0-alpha.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: TC.Tier.Runtime, 1.0.0-alpha.2"
#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 TC.Tier.Runtime@1.0.0-alpha.2
#: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=TC.Tier.Runtime&version=1.0.0-alpha.2&prerelease
#tool nuget:?package=TC.Tier.Runtime&version=1.0.0-alpha.2&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
TC.Tier.Runtime
TC.Tier 的存储运行时——存储引擎 + 结构层(Ring / Log / Index / Metadata / Mirror / Snapshot / SortedIndex),基于统一的 16B 逻辑地址空间。依赖 TC.Tier.Core + TC.Tier.Contracts。
能力
- 存储引擎:Options/Builder 装配(构造 → 启动一步到位)、16B 逻辑地址、零写放大 Compact、全并发区间所有权
- 结构层:Ring(WiscKey 值分离)/ Log(WAL)/ 索引(Hash/BTree/SkipList)/ Metadata(版本链)/ Mirror(镜像)/ Snapshot(大流)
- TierFs 四类文件系统:local(本地)/ memory(内存)/ virtual(虚拟,.tier)/ network(网络,S3)
快速开始
using TC.Tier.Contracts.Storage;
using TC.Tier.Core.IO;
using TC.Tier.Runtime.Storage;
using var vol = TierFs.New("memory:"); // 生产换 local:/// 或 network:///s3 零代码改动
using var engine = new StorageEngineOptions("demo", segmentGrowthLimit: 64 * 1024 * 1024)
.WithPreallocateFile(false)
.Builder(vol)
.Start();
var addr = engine.Append("hello, tier!"u8);
依赖
- TC.Tier.Core
- TC.Tier.Contracts
文档
- 完整文档站:https://docs.mytzz.top/
- 存储引擎指南:https://docs.mytzz.top/docs/runtime/storage-engine.html
- 结构层总览:https://docs.mytzz.top/docs/runtime/structures.html
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- TC.Tier.Core (>= 1.0.0-alpha.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on TC.Tier.Runtime:
| Package | Downloads |
|---|---|
|
TC.Tier.Products
TC.Tier 官方产品——TierKV/WAL/Blob/Queue,基于可组合运行时内核。 |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0-alpha.2 | 0 | 9/18/2026 |
| 1.0.0-alpha.1 | 36 | 9/16/2026 |