HiLang 1.2.16

There is a newer version of this package available.
See the version list below for details.
dotnet add package HiLang --version 1.2.16                
NuGet\Install-Package HiLang -Version 1.2.16                
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="HiLang" Version="1.2.16" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HiLang --version 1.2.16                
#r "nuget: HiLang, 1.2.16"                
#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 HiLang as a Cake Addin
#addin nuget:?package=HiLang&version=1.2.16

// Install HiLang as a Cake Tool
#tool nuget:?package=HiLang&version=1.2.16                

HiLang

HiLang is a minimal high-level language to describe the schema of a domain, taking inspiration from protobuf (.proto models) for hierarchical structures and SQL DML for entities, relations and views.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
1.2.18 107 9/15/2024
1.2.16 92 9/7/2024
1.2.15 84 9/1/2024
1.2.11 72 8/6/2024
1.2.9 73 7/26/2024
1.2.8 101 7/19/2024
1.2.6 86 7/15/2024
1.2.4 103 7/4/2024
1.2.0 110 5/30/2024
1.1.37 97 5/11/2024
1.1.34 98 4/22/2024
1.1.30 107 3/24/2024
1.1.26 122 3/14/2024
1.1.23 120 2/26/2024
1.1.22 112 2/16/2024
1.1.21 157 1/11/2024
1.1.19 142 1/1/2024
1.1.17 133 12/23/2023
1.1.11 121 12/16/2023
1.1.10 132 12/6/2023
1.1.7 134 11/30/2023
1.1.5 121 11/21/2023
1.0.14-prerelease 134 8/6/2023

## ConcurentHashSet
     The hash map for set spaces has been updated to use concurrent hash map.
     This is needed for two scenarios
     1. Horizons filter cause additional elements to be loaded in a set space while it is being enumerated.
     2. Parallel scan for Node and Edge cause references to be loaded in thread order.

     This implementation of Concurent HashSet:
     * Provides locking around HashSet functions (using low-contention Spin Locks)
     * One or more HashSet segments that are locked for read while enumeration functions are running
     * Add / Remove / Replace / UnionAll operations are performed on the next segment to avoid mutation during enumeration
     * Any additions made (to next segment) are merged when the last enumeration has completed
     * Whole-set functions are deferred until enumerations has completed

     ## RockSpace disposal
     Internally the RocksDB Flush function uses async-io, that under heavy load can complete before pending IO, which blocks disposal of the connection. The RocksSpace driver has been updated to retry disposal to allow async IO to complete

     ## HiperSpace GetHorizons() function
     A common loading scenario is to use a SessionSpace to batch a set of additions to a domain space

     ```
     public void LoadingFunction (DomainSpace domain)
     {
     using (var session = new SessionSpace (new HeapSpace(), domain, SessionSpace.RollUpSeconds(1))))
     using (var loader = new DomainSpace(session))
     {
     ... load actions
     }
     }
     ```

     The `GetHorizons()` function allows `loader` to apply any domain Horizon filters.  This is especially useful in server configurations where role-based access control is applied to the source source transparently to the local function.