Hiperspace 2.3.3
dotnet add package Hiperspace --version 2.3.3
NuGet\Install-Package Hiperspace -Version 2.3.3
<PackageReference Include="Hiperspace" Version="2.3.3" />
<PackageVersion Include="Hiperspace" Version="2.3.3" />
<PackageReference Include="Hiperspace" />
paket add Hiperspace --version 2.3.3
#r "nuget: Hiperspace, 2.3.3"
#addin nuget:?package=Hiperspace&version=2.3.3
#tool nuget:?package=Hiperspace&version=2.3.3
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.52)
- System.Numerics.Tensors (>= 9.0.5)
-
net9.0
- Microsoft.Bcl.HashCode (>= 6.0.0)
- protobuf-net.Core (>= 3.2.52)
- System.Numerics.Tensors (>= 9.0.5)
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.3.3 | 102 | 6/5/2025 |
2.2.2 | 160 | 5/5/2025 |
2.2.1 | 222 | 4/14/2025 |
2.2.0 | 112 | 3/29/2025 |
2.1.3 | 245 | 3/5/2025 |
2.1.1 | 136 | 2/15/2025 |
2.1.0 | 124 | 1/24/2025 |
2.0.0 | 84 | 1/14/2025 |
1.3.9 | 129 | 11/15/2024 |
1.3.3 | 114 | 11/1/2024 |
1.3.1 | 177 | 10/18/2024 |
1.3.0 | 148 | 10/5/2024 |
1.2.31 | 165 | 9/15/2024 |
1.2.26 | 142 | 9/1/2024 |
1.2.18 | 110 | 8/6/2024 |
1.2.12 | 111 | 7/26/2024 |
1.2.9 | 140 | 7/19/2024 |
1.2.8 | 144 | 7/15/2024 |
1.2.4 | 162 | 7/4/2024 |
1.2.0 | 171 | 5/30/2024 |
1.0.46 | 114 | 5/11/2024 |
1.0.40 | 134 | 4/22/2024 |
1.0.34 | 184 | 3/14/2024 |
1.0.28 | 190 | 2/26/2024 |
1.0.27 | 165 | 2/16/2024 |
1.0.24 | 219 | 1/11/2024 |
1.0.23 | 206 | 1/1/2024 |
1.0.1 | 197 | 11/18/2023 |
https://www.cepheis.com/hiperspace/20250606
# Overview
This release Significantly extends the functionality provided for Cube Analytics by hiperspace and combines streaming recalculation with graph navigation. The cube enhancement is detailed on [OLAP](https://www.cepheis.com/hiperspace/use-case-cube) use-case. To support Cube analytics and code-generation for aggregation service, and a number of additions were made to [Hipersapce](Hiperspace) and [HiLang](HiLang) compiler.
-----
## Blazor enhancements
This release removes obsolete functions that are no longer used, such as `Space()` which has been replaced by `ExportAsync()` to provide a streaming transfer of updates from a `SessionSpace` for higher performance.
### SetSpace
The Bind function now has an addition parameter for read/write so that filter can be used to *delete* elements without the need to open an additional connection
### SubSpace
In addition to ExportAsync and ImportAsync, SubSpaces now include `ExportCacheAsync` and `ImportCacheAsync` to allow a server gRPC endpoint to select all the elements that are needed for a use-case and send them all in one message to the client.
### BrowserSpace
This new type of space has been created in order to address the limitations of blazer web assembly that does not support synchronous network IO. BrowserSpace will be deprecated once WebAssembly support asynchronous threads.
Browser space, any synchronous operation, uses only the local changes cache, while asynchronous operations use either the local cache or the remote store
A matching change has been made to the HiLang code generator to use the local BrowserSpace for synchronous operations while
-----
## Cube Changes
* **CubeFact** property on an Element, now has a mathcing `ICubeFact` inteface and `ICubeDrillDown` for drill-down to further levels of detail
* **CubeHierarchy** property identifies a **CubeDimension** that is a hierarchy, with a reference to the member key/value that provides the parent. This results in as `ICubeHierarchy<>` interface added to the dimension element
* **DeltaIndex** property now results in a `IDeltaIndex<>` element added to `RefSet<>` for the elements `SubSpace` collection, to retrieve all values that have changed since the timestamp. This interface is used by the `Hiperspaced.Meta.Route` map to retrieve all elements that have changed since the last calculation
* **ElementVersion<>** now allows the `AsAt` property to be changed by an application to allow the historical data loading of a Hiperspace for Cube Analytics
* **Additional functions** added for `drilldown()` (*from cube to details*) `cubename()` (*for Graph name of a cube observation*) `contextlabel()` (*use context when retrieving cubes* there might be separate summaries for P&L and implied P&L )
* **SetSpace<>** now has an additional event `OnMissing` that allows missing cube aggregates to be calculated on-demand, or fetched from an external database
-----
The change also includes updates to referenced assemblies