Hiperspace.Rocks 2.1.1

dotnet add package Hiperspace.Rocks --version 2.1.1                
NuGet\Install-Package Hiperspace.Rocks -Version 2.1.1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Hiperspace.Rocks" Version="2.1.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Hiperspace.Rocks --version 2.1.1                
#r "nuget: Hiperspace.Rocks, 2.1.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Hiperspace.Rocks as a Cake Addin
#addin nuget:?package=Hiperspace.Rocks&version=2.1.1

// Install Hiperspace.Rocks as a Cake Tool
#tool nuget:?package=Hiperspace.Rocks&version=2.1.1                

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 65 2/15/2025
2.1.0 54 1/24/2025
2.0.0 40 1/14/2025
1.3.9 91 11/15/2024
1.3.0 102 10/5/2024
1.2.31 146 9/15/2024
1.2.28 110 9/7/2024
1.2.26 103 9/1/2024
1.2.8 111 7/15/2024
1.2.4 119 7/4/2024
1.2.0 115 5/30/2024
1.0.34 126 3/14/2024
1.0.28 128 2/26/2024
1.0.27 125 2/16/2024
1.0.24 165 1/11/2024
1.0.23 154 1/1/2024
1.0.1 153 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.