Hiperspace.Heap
2.1.1
dotnet add package Hiperspace.Heap --version 2.1.1
NuGet\Install-Package Hiperspace.Heap -Version 2.1.1
<PackageReference Include="Hiperspace.Heap" Version="2.1.1" />
paket add Hiperspace.Heap --version 2.1.1
#r "nuget: Hiperspace.Heap, 2.1.1"
// Install Hiperspace.Heap as a Cake Addin #addin nuget:?package=Hiperspace.Heap&version=2.1.1 // Install Hiperspace.Heap as a Cake Tool #tool nuget:?package=Hiperspace.Heap&version=2.1.1
Hiperspace.Heap
The Heap driver provides the simplest hiperspace, storing objects in the managed process heap,
it exists for testing purposes, but also for benchmark performance of other drivers.
The Heap driver uses more memory, and is slower than the Rocks driver.
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 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. |
-
net8.0
- Hiperspace (>= 2.1.1)
- Microsoft.Bcl.HashCode (>= 6.0.0)
- protobuf-net.Core (>= 3.2.46)
- System.Numerics.Tensors (>= 9.0.2)
-
net9.0
- Hiperspace (>= 2.1.1)
- Microsoft.Bcl.HashCode (>= 6.0.0)
- protobuf-net.Core (>= 3.2.46)
- System.Numerics.Tensors (>= 9.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.1.1 | 40 | 2/15/2025 |
2.1.0 | 31 | 1/24/2025 |
2.0.0 | 32 | 1/14/2025 |
1.3.9 | 94 | 11/15/2024 |
1.3.0 | 109 | 10/5/2024 |
1.2.31 | 142 | 9/15/2024 |
1.2.28 | 126 | 9/7/2024 |
1.2.26 | 114 | 9/1/2024 |
1.2.8 | 124 | 7/15/2024 |
1.2.4 | 106 | 7/4/2024 |
1.2.0 | 126 | 5/30/2024 |
1.0.34 | 159 | 3/14/2024 |
1.0.28 | 132 | 2/26/2024 |
1.0.27 | 160 | 2/16/2024 |
1.0.24 | 156 | 1/11/2024 |
1.0.23 | 164 | 1/1/2024 |
1.0.1 | 158 | 11/18/2023 |
# Overview
This release is primarily concerned with updates to match changes to .NET 9.0 with the release of Visual Studio 17.13 and related libaries. It also includes an Update to Hiperspace.Rocks to reflect similar changes to RocksDB.
The implementation of OLAP cube support has also been changed to simplify its use for client applications and allow Fact tables to be used with BI tools that cannot use the binary CubeKey, OLAP Cube Facts now include references to the dimensions. This allows the removal of BKey (Key represented as an array of bytes) that us *unhelpful* for **Hiperspace.SQL** and **JSON** serialization.
## Fact tables
Fact tables store calculated summaries of the underlying data, but aggregated for real-time access without the need to reevaluate calculations. Hiperspace Fact tables also support to store of Hierarchy of values - in this example the `sum` of transaction values are stored in the slice "20" for CustomerAccount (sum of all Transactions for an Account) and slice "3" for Customer (sum of all Transactions for a Customer). Both Customer and CustomerAccount elements have navigation reference to CustomerAccount_Fact to retrieve summaries directly.
Hiperspace OLAP doesn't just store the sum of transactions for fast read, but allows *deltas* to be added without the need for rerun a complete aggregation. The `@deltaindex` on Transaction allows only the changes within an *epoch* (transactions between the last aggregation and last update) to be selected, and `deltasum` calculates only the difference since the last time the cube was calculated - this enables real-time aggregation to be performed.
As the `CustomerAccount_Fact` table is versioned, it is possible to view the history of a cube-slice (in a graph) and calculate regression analysis without the need to drill-down to detail rows.