Hiperspace.Rocks 2.4.0

dotnet add package Hiperspace.Rocks --version 2.4.0
                    
NuGet\Install-Package Hiperspace.Rocks -Version 2.4.0
                    
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.4.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Hiperspace.Rocks" Version="2.4.0" />
                    
Directory.Packages.props
<PackageReference Include="Hiperspace.Rocks" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Hiperspace.Rocks --version 2.4.0
                    
#r "nuget: Hiperspace.Rocks, 2.4.0"
                    
#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.
#:package Hiperspace.Rocks@2.4.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Hiperspace.Rocks&version=2.4.0
                    
Install as a Cake Addin
#tool nuget:?package=Hiperspace.Rocks&version=2.4.0
                    
Install as a Cake Tool

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.  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. 
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.4.0 106 7/10/2025
2.3.8 133 7/1/2025
2.3.7 137 6/18/2025
2.3.3 137 6/5/2025
2.2.2 154 5/5/2025
2.2.1 218 4/14/2025
2.2.0 104 3/29/2025
2.1.3 213 3/5/2025
2.1.1 117 2/15/2025
2.1.0 124 1/24/2025
2.0.0 96 1/14/2025
1.3.9 117 11/15/2024
1.3.0 127 10/5/2024
1.2.31 169 9/15/2024
1.2.28 131 9/7/2024
1.2.26 127 9/1/2024
1.2.8 135 7/15/2024
1.2.4 143 7/4/2024
1.2.0 138 5/30/2024
1.0.34 146 3/14/2024
1.0.28 152 2/26/2024
1.0.27 149 2/16/2024
1.0.24 184 1/11/2024
1.0.23 173 1/1/2024
1.0.1 171 11/18/2023

## Overview

     **Hiperspace** is uses [protobuf](https://protobuf.dev/) wire-format to serialize **elements** in the domain **SubSpace**
     for persistence is a *key/value* *(primarily [RocksDB](https://rocksdb.org/))* with *minimal* transformation, and no padding.

     The schema can evolve without the need to alter an historically, using two rules:
     * #id numeric aliases for {entities, segments, aspects, keys, values, indexes} are never reused
     * The datatype of {keys, values} are never changed (*other than by renaming items*)


     ### MetaModel

     The `MetaModel` contains a list of all the *Element* types stored within a Hiperspace and the data types of each *key*
     and *value*.  The `MetaModel` is eternal - additional *Element* are added as tyhe schema changes, but never removed, to ensure that
     older build can still read the data that they understand.

     When a **Hiperspace** is opened, the domain `MetaModel` is compared with the `MetaModel` stored in the **Hiperspace** to ensure the
     above rules have not been compromised.  All read and write after open uses the wire-format directly without transformation from store
     through to client application (including browser web-assembly).

     ### MetaMap

     To support range access, the bytes in wire-format for keys are reordered to place message lengths at the end of the `byte[]`
     for each key.  This is especially important for *segments* (*where the parent knows only the `owner` part of the key, and *indexes*).

     The `MetaMap` is an ordered array of #id and mapping of *key/value* #id to the element #id of references.  The `MetaMap` is coded
     in the domain assembly.  This release adds the capability to remove key references without the need to crerate a new element type, by
     regenerating the `MetaMap` from the `MetaModel` stored in **Hiperspace**.


     ### Change

     This release changes the method signatures {`KeyPath`, `IndexPath`} to support a MetaMap built at load-time, and
     adds additional abstract methods to the `Hiperspace` to load and merge `MetaModel`.

     The `MetaModelException` exception type has been added to provide detailed diagnostics, if the `MetaModel` is not compatible.