Hiperspace 2.4.4
dotnet add package Hiperspace --version 2.4.4
NuGet\Install-Package Hiperspace -Version 2.4.4
<PackageReference Include="Hiperspace" Version="2.4.4" />
<PackageVersion Include="Hiperspace" Version="2.4.4" />
<PackageReference Include="Hiperspace" />
paket add Hiperspace --version 2.4.4
#r "nuget: Hiperspace, 2.4.4"
#:package Hiperspace@2.4.4
#addin nuget:?package=Hiperspace&version=2.4.4
#tool nuget:?package=Hiperspace&version=2.4.4
Hiperspace
Hiperspace is an Object technology that uses a key-addressable store to expand an application data-model beyond the limits of memory that can be directly referenced in main memory.
Elements are not duplicated or changing to match database shapes.
Elements are serialized directly using Protocol Buffers
to and from key/value structure for storage in memory stores including CXL
expanded and pooled memory, shared cache , local SSD or key-value durable databases.
Elements that are not currently being used are released from main memory, and transparently (and quickly) reloaded when referenced. Memory stores allows petabytes of data to be addressed.
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
- Microsoft.Bcl.HashCode (>= 6.0.0)
- protobuf-net.Core (>= 3.2.56)
- System.Numerics.Tensors (>= 9.0.8)
-
net9.0
- Microsoft.Bcl.HashCode (>= 6.0.0)
- protobuf-net.Core (>= 3.2.56)
- System.Numerics.Tensors (>= 9.0.8)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Hiperspace:
Package | Downloads |
---|---|
Hiperspace.Heap
Hiperspace heap store for session, edge and testing purposes |
|
Hiperspace.Rocks
HiperSpace RocksDB adaptor |
|
Hiperspace.SQL
# Hiperspace.SQL Hiperspace.SQL is a full SQL query engine for Hiperspace, supporting the full range of joins, aggregations, and subqueries. Hiperspace.SQL provides the same query functionality as a .NET client can use with LINQ queries, but without the need to write code in C#/F# Hiperspace fully supports point-in-time "time travel" queries that are not possible with Python Data-Frames or DuckDB ## Features - Hiperspace.SQL is not limited to queries of columns within a table, but supports the full navigation of properties of Hiperspace elements - Where a column is a complex object it is returned as a JSON object - Executing a batch of SQL statements return columnar data frames (dictionary of column-name and array of values) - Explain SQL returns the execution plan, detailing the SetSPaces accessed and keys used for search (Key, Index, Scan) - The Parquet method returns a Parquet file that can be used with any Apache Parquet library, or added to DuckDB OLAP store |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
2.4.4 | 218 | 8/7/2025 |
2.4.2 | 99 | 7/28/2025 |
2.4.0 | 169 | 7/10/2025 |
2.3.8 | 151 | 7/1/2025 |
2.3.7 | 164 | 6/18/2025 |
2.3.3 | 168 | 6/5/2025 |
2.2.2 | 181 | 5/5/2025 |
2.2.1 | 241 | 4/14/2025 |
2.2.0 | 129 | 3/29/2025 |
2.1.3 | 264 | 3/5/2025 |
2.1.1 | 156 | 2/15/2025 |
2.1.0 | 142 | 1/24/2025 |
2.0.0 | 105 | 1/14/2025 |
1.3.9 | 146 | 11/15/2024 |
1.3.3 | 133 | 11/1/2024 |
1.3.1 | 192 | 10/18/2024 |
1.3.0 | 163 | 10/5/2024 |
1.2.31 | 179 | 9/15/2024 |
1.2.26 | 163 | 9/1/2024 |
1.2.18 | 125 | 8/6/2024 |
1.2.12 | 129 | 7/26/2024 |
1.2.9 | 155 | 7/19/2024 |
1.2.8 | 165 | 7/15/2024 |
1.2.4 | 181 | 7/4/2024 |
1.2.0 | 187 | 5/30/2024 |
1.0.46 | 138 | 5/11/2024 |
1.0.40 | 153 | 4/22/2024 |
1.0.34 | 202 | 3/14/2024 |
1.0.28 | 208 | 2/26/2024 |
1.0.27 | 183 | 2/16/2024 |
1.0.24 | 239 | 1/11/2024 |
1.0.23 | 222 | 1/1/2024 |
1.0.1 | 210 | 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.