Hiperspace.Rocks
2.5.50
Prefix Reserved
dotnet add package Hiperspace.Rocks --version 2.5.50
NuGet\Install-Package Hiperspace.Rocks -Version 2.5.50
<PackageReference Include="Hiperspace.Rocks" Version="2.5.50" />
<PackageVersion Include="Hiperspace.Rocks" Version="2.5.50" />
<PackageReference Include="Hiperspace.Rocks" />
paket add Hiperspace.Rocks --version 2.5.50
#r "nuget: Hiperspace.Rocks, 2.5.50"
#:package Hiperspace.Rocks@2.5.50
#addin nuget:?package=Hiperspace.Rocks&version=2.5.50
#tool nuget:?package=Hiperspace.Rocks&version=2.5.50
Hiperspace.Rocks
RocksDB is a remarkable technology, originally developed by Google (LevelDB) and optimized by Facebook for
absolutely lowest possible latency writing to SSD devices.
RocksDB used Log-structured-Merge (LSM) to stream updates while maintaining fast key access.
It is used both as a key/value database, and also as a driver for relational-databases, message-stores,
blockchain and various analytical services. The use of LSM optimizes performance and life of SSD devices.
Hiperspace.Rocks uses RockDB to store elements in durable SSD memory
| 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 is compatible. 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. |
-
net10.0
- Hiperspace (>= 2.5.50)
- Microsoft.Bcl.HashCode (>= 6.0.0)
- protobuf-net.Core (>= 3.2.56)
- RocksDB (>= 10.4.2.64152)
- System.Numerics.Tensors (>= 10.0.5)
-
net8.0
- Hiperspace (>= 2.5.50)
- Microsoft.Bcl.HashCode (>= 6.0.0)
- protobuf-net.Core (>= 3.2.56)
- RocksDB (>= 10.4.2.64152)
- System.Numerics.Tensors (>= 10.0.5)
-
net9.0
- Hiperspace (>= 2.5.50)
- Microsoft.Bcl.HashCode (>= 6.0.0)
- protobuf-net.Core (>= 3.2.56)
- RocksDB (>= 10.4.2.64152)
- System.Numerics.Tensors (>= 10.0.5)
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.5.50 | 97 | 4/24/2026 |
| 2.5.47 | 100 | 4/15/2026 |
| 2.5.43 | 97 | 4/1/2026 |
| 2.5.39 | 100 | 3/20/2026 |
| 2.5.35 | 110 | 2/27/2026 |
| 2.5.33 | 115 | 2/14/2026 |
| 2.5.32 | 116 | 1/30/2026 |
| 2.5.29 | 118 | 1/17/2026 |
| 2.5.28 | 123 | 12/31/2025 |
| 2.5.26 | 199 | 12/21/2025 |
| 2.5.21 | 455 | 12/10/2025 |
| 2.5.18 | 689 | 12/3/2025 |
| 2.5.13 | 225 | 11/24/2025 |
| 2.5.8 | 205 | 11/15/2025 |
| 2.5.2 | 244 | 11/6/2025 |
| 2.5.0 | 226 | 10/20/2025 |
| 2.4.6 | 236 | 9/23/2025 |
| 2.4.4 | 311 | 8/7/2025 |
| 2.4.2 | 197 | 7/28/2025 |
| 2.4.0 | 227 | 7/10/2025 |
https://www.cepheis.com/hiperspace/20260424
# Overview
This release is a minor update to support the presentation Cube data in Graph views with **Hiperspace.DB**, and minor updated to external references.
## Fact enhancement
A specific `ICubeFact<TFact>` inteface has been added to include `public IEnumerable<TFact> DrillDown(Type dimension);` for generic drilldown from one Cube to the next level when viewed in **Hiperspace.DB**.
The `ICubeDimension` interface now has a `GetCube()` function to get the named `ICubeFact` for use with a **PivotTable** view of the *Cube* through **Hiperspace.DB**.
## SubSpace enhancement
`SubSpaceParameters` has been enhanced to include `TransactionalPolicy`
|Policy|Notes|
|-|-|
|NotTransactional|Indicates that the Space is not transactional|
|Transactional|Specifies that a new transaction should be started|
|ParentTransaction|Indicates that the space participates in the transaction of its parent space|
|ContinueTransaction|Transaction is a continuation of a prior (long-running) transaction|
---
## Hilang enhancement
Added support sdupport for Cube aggregation of views in addition to {*entity, segment, aspect*}.
Consider the model where there are seperate *entitites* for {*FX, FI, EQ*} Trades that have different values for Entities, Bonds, Foreign Exchange, but can all be *viewed* as a Trade that has a booking_id, and a valuation (NPV). This change adds support for **Cube** analytics of *views* combining all trades in all entities that provide the view.
```
type Banking.TradeBase
(
Id : String
)
{
Book : Banking.Book,
@CubeMeasure(Aggregate.Sum)
NPV : Decimal
};
@CubeFact
view Banking.Trade : Banking.TradeBase;
entity Banking.FI.Trade : Banking.TradeBase = Banking.Trade();
entity Banking.FX.Trade : Banking.TradeBase = Banking.Trade();
entity Banking.EQ.Trade : Banking.TradeBase = Banking.Trade();
@CubeDimension
entity Banking.Book ( Id : String ) [ Trades : Banking.Trade (Book = this)];
```
When the schema is compiled with [HiLang](HiLang), `Banking.Book` has an additional property `Trade_Cube` that aggregates NPV over the full set trades that can be *viewed* as a `Banking.Trade`.
### Enhanced List support
Keys in a hilang element can be:
* A Value including value elements defined in Hilang and primatives (e.g. String, Int32, Guid, etc)
* A Reference to an entity (only the Key-part of the referened entity is serialised)
* A List of Values (e.g. List<String>) but not a Set<> since a Set order can change
Key support for `List<>` in keys has been extended to include Keys of Lists of Values of Lists of Values, that can be placed in a `SortedSet`. Examples include [FINIOS CDM](https://www.finos.org/common-domain-model) that supports complex identifiers that include list of identifiers
```
value CDM.PartyIdentifier ( identifier : String );
entity CDM.Party ( partyId : CDM.PartyIdentifier );
value CDM.PriceQuantity;
value CDM.AssetIdentifier
(
identifer : String,
version : Int32
);
value CDM.Identifer
(
assignedIdentifier : List<CDM.AssetIdentifier>,
issuerReference : CDM.Party,
issuer : String
);
entity CDM.TradeLot
(
lotIdentifier : List<CDM.Identifer>
)
{
priceQuantity : List<CDM.PriceQuantity>
};
```
In this example `CDM.TradeLot` has a key that is a `List<CDM.Identifer>` which itself contains a `List<CDM.AssetIdentifier>`. Lists are supported in [HiLang](HiLang) models since the they can be unambiguously serialised to a store and retrived later. **NB** `CDM.Identifer` contains a reference to `CDM.Party` which is a *entity* so only the *key* is stored, with `CDM.Party` retrived only when needed.