Hiperspace.Heap
2.4.4
dotnet add package Hiperspace.Heap --version 2.4.4
NuGet\Install-Package Hiperspace.Heap -Version 2.4.4
<PackageReference Include="Hiperspace.Heap" Version="2.4.4" />
<PackageVersion Include="Hiperspace.Heap" Version="2.4.4" />
<PackageReference Include="Hiperspace.Heap" />
paket add Hiperspace.Heap --version 2.4.4
#r "nuget: Hiperspace.Heap, 2.4.4"
#:package Hiperspace.Heap@2.4.4
#addin nuget:?package=Hiperspace.Heap&version=2.4.4
#tool nuget:?package=Hiperspace.Heap&version=2.4.4
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. 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. |
-
net8.0
- Hiperspace (>= 2.4.4)
- Microsoft.Bcl.HashCode (>= 6.0.0)
- protobuf-net.Core (>= 3.2.56)
- System.Numerics.Tensors (>= 9.0.8)
-
net9.0
- Hiperspace (>= 2.4.4)
- Microsoft.Bcl.HashCode (>= 6.0.0)
- protobuf-net.Core (>= 3.2.56)
- System.Numerics.Tensors (>= 9.0.8)
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.4.4 | 209 | 8/7/2025 |
2.4.2 | 99 | 7/28/2025 |
2.4.0 | 142 | 7/10/2025 |
2.3.8 | 136 | 7/1/2025 |
2.3.7 | 149 | 6/18/2025 |
2.3.3 | 151 | 6/5/2025 |
2.2.2 | 161 | 5/5/2025 |
2.2.1 | 225 | 4/14/2025 |
2.2.0 | 119 | 3/29/2025 |
2.1.3 | 232 | 3/5/2025 |
2.1.1 | 128 | 2/15/2025 |
2.1.0 | 134 | 1/24/2025 |
2.0.0 | 97 | 1/14/2025 |
1.3.9 | 129 | 11/15/2024 |
1.3.0 | 140 | 10/5/2024 |
1.2.31 | 171 | 9/15/2024 |
1.2.28 | 156 | 9/7/2024 |
1.2.26 | 146 | 9/1/2024 |
1.2.8 | 154 | 7/15/2024 |
1.2.4 | 134 | 7/4/2024 |
1.2.0 | 155 | 5/30/2024 |
1.0.34 | 186 | 3/14/2024 |
1.0.28 | 166 | 2/26/2024 |
1.0.27 | 187 | 2/16/2024 |
1.0.24 | 185 | 1/11/2024 |
1.0.23 | 193 | 1/1/2024 |
1.0.1 | 176 | 11/18/2023 |
https://www.cepheis.com/hiperspace/20250807
## Overview
Partition elimination is an advanced feature in SQL relational databases, that skip access to a partition view when the optimizer can determine that it will not return any values. This release adds the feature to Hiperspace views to skip `SetSpace` access that is not needed, *most commonly for Graph queries*
### SQL Views
```
/* for the view */
CREATE VIEW costs AS
SELECT cost, 'Sales' as area FROM sales_costs UNION
SELECT cost, 'Operations' as area FROM ops_costs UNION
SELECT cost, 'Assets' as area FROM asset_costs ;
/* queried as */
SELECT cost FROM costs WHERE area = 'Sales';
/* will skip the query ops_costs and asset_costs since it will return no rows */
```
### Hiperspace Views
Hiperspace views provide the same function, but rather than define a view separately, the view definition is part `element` definition, with the view being created as a union of all the `elements` { `entity`, `segment`, `aspect`, `view` } that provide the `view`.
```
segment Togaf.Has.Requirement : Togaf.Base
= Node ( SKey = SKey, Name = Name, TypeName = "AF-Requirement"),
Edges (From = owner, To = this, Name = Name, FromTypeName = "AF-Has-Requirement", ToTypeName = "AF-Requirement-For") ;
```
defines a `segment` named `Togaf.Has.Requirement` *that can be viewed* as a `Node` with the `TypeName` "AF-Requirement". Within the [TOGAF](https://github.com/channell/Hiperspace/blob/master/examples/TOGAF/TOGAF.hilang) sample there are
**201** elements that *can be viewed* as a `Node`, all of which are included in the `SubSpace` view `Nodes`.
Prior to this release a LINQ query `from node in Nodes where node.TypeName == "AF-Requirement";` would scan all **201** `SetSpace` before filtering to include only *requirements*, but will now skip the scan of the other **200** types. This is especially useful for graph data-explorer browsers that will typically search for a single source node type
This is implemented with the `SetSpace<>` function `public virtual bool IsSkippable(object template) => false;` that is overridden in **HiLang** generated code, and used by all `View` Sets
## RefSet<>
The `RefSet<>` collection of references to segments or other entities (via index) has been updated to include `AddAsync` to simplify the addition of a segment reference when used from a web-assembly client.