BTDB 32.5.0

dotnet add package BTDB --version 32.5.0
NuGet\Install-Package BTDB -Version 32.5.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="BTDB" Version="32.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BTDB --version 32.5.0
#r "nuget: BTDB, 32.5.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.
// Install BTDB as a Cake Addin
#addin nuget:?package=BTDB&version=32.5.0

// Install BTDB as a Cake Tool
#tool nuget:?package=BTDB&version=32.5.0

BTDB

Currently this project these parts:

  • Key Value Database
  • Wrapped Dynamic IL generation with debugging + extensions
  • IOC Container (SourceGenerator based)
  • Object Database with Relations
  • Snappy Compression
  • Event Storage
  • Bon (Binary object notation)
  • Incremental SourceGenerator for IOC Container factory generation

All code written in C# 11 and licensed under very permissive MIT license. Targeting .Net 8.0, main code has just 1 dependency (Microsoft.Extensions.Primitives). Code is tested using xUnit Framework. Used in production on Windows and Linux, on MacOS works as well. Please is you find it useful or have questions, write me e-mail boris.letocha@gmail.com so I know that it is used. It is available in Nuget http://www.nuget.org/packages/BTDB. Source code drops are Github releases.


Key Value Database

Features

  • This is Key Value store written in C# with 2 implementation old on managed heap and new on native heap (has also prefix compression).
  • It is easily embeddable.
  • One storage is just one directory.
  • It has ACID properties with MVCC.
  • At one time there could be multiple read only transactions and one read/write transaction.
  • Export/Import to stream - could be used for compaction, snapshotting
  • Automatic compaction
  • Customizable compression
  • Relatively Fast DB Open due to key index file - though it still needs to load all keys to memory
  • Inspired by Bitcask [https://github.com/basho/bitcask/blob/develop/doc/bitcask-intro.pdf]

Design limits

  • All keys data needs to fit in RAM
  • Maximum Key length is limited by 31bits (2GB).
  • Maximum value length is limited by 31bits (2GB).

Sample code

using (var fileCollection = new InMemoryFileCollection())
using (IKeyValueDB db = new KeyValueDB(fileCollection))
{
    using (var tr = db.StartTransaction())
    {
        tr.CreateOrUpdateKeyValue(new byte[] { 1 }, new byte[100000]);
        tr.Commit();
    }
}

Roadmap

  • Everything is there just use it

Wrapped Dynamic IL generation with debugging + extensions

This help you to write fluent code which generates IL code in runtime. It is used in Object Database part.

Sample code

var method = ILBuilder.Instance.NewMethod<Func<Nested>>("SampleCall");
var il = method.Generator;
var local = il.DeclareLocal(typeof(Nested), "n");
il
    .Newobj(() => new Nested())
    .Dup()
    .Stloc(local)
    .Ldstr("Test")
    .Call(() => ((Nested)null).Fun(""))
    .Ldloc(local)
    .Ret();
var action = method.Create();

Roadmap

  • Add support for all IL instructions as needed
  • Deprecate this by replacing its usages by Source Generator

Object Database

Features

  • Builds on top of Key Value Database and Reflection.Emit extensions.
  • It stores Plain .Net Objects and only their public properties with getters and setters.
  • All ACID and MVCC properties are preserved of course.
  • Automatic upgrading of model on read with dynamically generated optimal IL code.
  • Automatic versioning of model changes.
  • Enumeration of all objects
  • Each object type could store its "singleton" - very useful for root objects
  • Relations - Table with primary key and multiple secondary keys
  • By default objects are stored inline in parent object, use IIndirect for objects with Oid which will load lazily

Documentation: [https://github.com/Bobris/BTDB/blob/master/Doc/ODBDictionary.md]

Relations doc: [https://github.com/Bobris/BTDB/blob/master/Doc/Relations.md]

Sample code

public class Person
{
    public string Name { get; set; }
    public uint Age { get; set; }
}

using (var tr = _db.StartTransaction())
{
    tr.Store(new Person { Name = "Bobris", Age = 35 });
    tr.Commit();
}
using (var tr = _db.StartTransaction())
{
    var p = tr.Enumerate<Person>().First();
    Assert.AreEqual("Bobris", p.Name);
    Assert.AreEqual(35, p.Age);
}

Roadmap

  • Support more types of properties
  • Free text search (far future if ever)

Event storage

Features

  • Optimal serialization with metadata
  • Deserialization also to dynamic
  • Storage is transactional
  • As storage could be used Azure Page Blobs
  • EventStorage2 is specialized to be used with Kafka, metadata are stored in separate topic

Bon

Bon Binary object notation is allows creating and reading JavaScript/C# values with extensions like Dictionary/Map into binary notation. It is much faster to parse, write, skip, search by keys than JSON, size will be also smaller in most cases, in some cases much more smaller.


Snappy Compression

Features

  • Ported and inspired mainly by Go version of Snappy Compression [http://code.google.com/p/snappy/]
  • Fully compatible with original
  • Fully managed and safe implementation
  • Compression is aborted when target buffer size is not big enough

Roadmap

  • Some speed optimizations around Spans would help
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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on BTDB:

Package Downloads
Bbcore.Lib

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
32.5.0 25,127 2/29/2024
32.4.29 418 2/26/2024
32.4.28 75 2/26/2024
32.4.26 5,422 2/21/2024
32.4.25 1,968 2/20/2024
32.4.24 457 2/19/2024
32.4.23 3,502 2/14/2024
32.4.22 92 2/13/2024
32.4.21 2,312 2/12/2024
32.4.20 231 2/7/2024
32.4.19 143 2/7/2024
32.4.18 223 2/1/2024
32.4.17 86 1/31/2024
32.4.16 81 1/30/2024
32.4.15 214 1/29/2024
32.4.14 80 1/29/2024
32.4.13 89 1/27/2024
32.4.12 81 1/26/2024
32.4.11 74 1/26/2024
32.4.10 79 1/26/2024
32.4.9 77 1/26/2024
32.4.8 80 1/26/2024
32.4.7 71 1/25/2024
32.4.6 81 1/25/2024
32.4.5 85 1/25/2024
32.4.4 81 1/24/2024
32.4.3 85 1/23/2024
32.4.2 80 1/23/2024
32.4.1 84 1/22/2024
32.4.0 86 1/21/2024
32.3.2 97 1/19/2024
32.3.1 78 1/18/2024
32.3.0 74 1/18/2024
32.2.0 95 1/17/2024
32.1.0 101 1/14/2024
32.0.3 110 1/8/2024
32.0.2 510 1/2/2024
32.0.1 103 1/2/2024
32.0.0 113 1/1/2024
31.15.0 9,745 1/22/2024
31.14.0 23,997 11/23/2023
31.13.0 4,341 11/21/2023
31.12.7 1,582 11/16/2023
31.12.6 216 11/16/2023
31.12.5 179 11/13/2023
31.12.4 611 11/12/2023
31.12.3 8,869 10/30/2023
31.12.2 4,641 10/16/2023
31.12.1 5,077 10/5/2023
31.12.0 216 9/17/2023
31.11.3 30,112 8/10/2023
31.11.2 159 8/9/2023
31.11.1 143 8/8/2023
31.11.0 4,926 8/8/2023
31.10.0 1,022 8/3/2023
31.9.0 180 8/1/2023
31.8.2 2,719 8/1/2023
31.8.1 137 8/1/2023
31.8.0 24,997 6/8/2023
31.7.0 10,264 5/23/2023
31.6.0 179 5/21/2023
31.5.2 1,640 5/16/2023
31.5.1 17,598 4/13/2023
31.5.0 8,854 3/28/2023
31.4.3 3,664 3/24/2023
31.4.2 3,777 3/21/2023
31.4.1 264 3/21/2023
31.4.0 280 3/21/2023
31.3.2 17,005 2/20/2023
31.3.1 616 2/17/2023
31.3.0 290 2/15/2023
31.2.1 293 2/15/2023
31.2.0 1,962 2/15/2023
31.1.1 26,717 2/4/2023
31.1.0 335 2/3/2023
31.0.0 327 2/3/2023
30.5.0 13,880 1/10/2023
30.4.0 527 1/9/2023
30.3.0 6,747 1/3/2023
30.2.2 8,868 1/2/2023
30.2.1 376 1/2/2023
30.2.0 394 1/1/2023
30.1.0 343 12/21/2022
30.0.0 23,030 11/14/2022
29.12.1 466 11/3/2022
29.12.0 883 11/2/2022
29.11.0 495 9/7/2022
29.10.1 498 8/1/2022
29.10.0 481 8/1/2022
29.9.1 492 7/22/2022
29.9.0 519 7/17/2022
29.8.0 519 6/13/2022
29.7.0 510 6/8/2022
29.6.0 508 6/5/2022
29.5.0 528 5/18/2022
29.4.0 517 5/17/2022
29.3.0 515 5/13/2022
29.2.0 540 5/3/2022
29.1.1 8,730 3/29/2022
29.1.0 535 3/28/2022
29.0.0 563 2/28/2022
28.3.2 582 1/21/2022
28.3.1 534 1/21/2022
28.3.0 395 1/4/2022
28.2.0 395 12/19/2021
28.1.2 411 12/7/2021
28.1.1 361 12/6/2021
28.1.0 372 11/29/2021
28.0.0 396 11/17/2021
27.0.3 452 11/17/2021
27.0.2 1,623 11/7/2021
27.0.0 410 11/2/2021
26.2.1 688 5/8/2021
24.0.2 21,184 6/15/2020
24.0.1 787 6/13/2020
24.0.0 641 6/13/2020
23.1.0 810 5/23/2020
23.0.0 639 5/18/2020
22.2.2 646 5/14/2020
22.2.1 624 5/14/2020
22.2.0 607 5/13/2020
22.1.0 620 5/12/2020
22.0.0 636 5/10/2020
21.0.0 673 5/6/2020
20.3.0 711 5/2/2020
20.0.0 756 4/25/2020
19.5.0 1,209 3/10/2020
19.4.0 1,650 11/30/2019
19.3.0 1,078 11/6/2019
19.2.0 753 11/3/2019
19.1.0 946 10/13/2019
19.0.0 783 10/6/2019
18.2.2 1,061 9/19/2019
18.2.1 837 9/16/2019
18.2.0 863 9/8/2019
18.1.0 882 9/2/2019
18.0.0 761 9/1/2019
17.10.0 818 8/28/2019
17.9.0 1,959 7/24/2019
17.8.0 1,689 7/13/2019
17.7.0 1,426 6/9/2019
17.6.0 1,342 5/10/2019
17.5.2 1,366 5/9/2019
17.5.1 1,383 5/9/2019
17.5.0 1,399 4/16/2019
17.4.2 1,521 2/12/2019
17.4.1 1,448 2/6/2019
17.4.0 1,445 2/6/2019
17.3.0 1,443 1/25/2019
17.2.0 1,498 1/8/2019
17.1.0 1,423 12/24/2018
17.0.1 1,505 12/20/2018
17.0.0 1,498 12/16/2018
16.2.1 1,549 12/11/2018
14.12.2 1,653 10/15/2018
14.7.0 1,831 8/16/2018
14.6.0 1,625 8/2/2018
14.5.2 1,742 7/9/2018
14.5.1 1,703 6/20/2018
14.5.0 1,714 6/13/2018
14.4.0 1,751 6/10/2018
14.3.0 1,793 6/10/2018
14.2.1 1,741 6/7/2018
14.2.0 1,649 6/6/2018
14.1.0 1,631 6/6/2018
14.0.0 1,690 6/5/2018
13.1.0 1,720 6/3/2018
13.0.0 1,756 5/7/2018
12.7.0 1,838 4/15/2018
12.6.1 1,797 3/23/2018
12.6.0 1,813 3/18/2018
12.5.1 1,774 2/26/2018
12.5.0 1,826 2/12/2018
12.4.0 1,833 1/31/2018
12.3.0 1,770 1/29/2018
12.2.0 1,791 1/9/2018
12.1.0 1,849 12/10/2017
12.0.0 1,733 12/3/2017
11.10.1 1,913 11/20/2017
11.10.0 1,924 11/3/2017
11.9.1 1,907 11/2/2017
11.9.0 1,883 10/31/2017
11.8.1 1,874 10/30/2017
11.8.0 1,888 10/28/2017
11.7.0 1,912 10/26/2017
11.6.5 1,927 10/24/2017
11.6.4 1,928 10/23/2017
11.6.3 1,953 10/20/2017
11.6.2 1,897 10/19/2017
11.6.1 1,907 10/18/2017
11.6.0 1,899 10/15/2017
11.5.0 1,912 10/8/2017
11.4.0 2,144 9/6/2017
11.3.0 1,904 9/4/2017
11.2.0 1,717 8/20/2017
11.1.0 1,681 8/9/2017
11.0.4 1,752 7/30/2017
11.0.3 1,757 7/24/2017
11.0.2 1,856 7/21/2017
11.0.1 1,718 7/21/2017
11.0.0 1,777 7/19/2017
10.6.0 1,773 6/27/2017
10.5.2 1,828 6/23/2017
10.5.1 1,798 6/22/2017
10.5.0 1,764 6/17/2017
10.4.3 1,753 5/31/2017
10.4.2 1,719 5/25/2017
10.4.1 1,787 5/22/2017
10.4.0 1,724 5/19/2017
10.3.0 1,736 5/11/2017
10.2.0 1,750 4/21/2017
10.1.2 1,719 4/14/2017
10.1.1 1,710 4/12/2017
10.1.0 1,754 4/7/2017
10.0.2 1,696 3/28/2017
10.0.1 1,726 3/26/2017
10.0.0 1,754 3/20/2017
9.4.0 1,721 3/12/2017
9.3.1 1,747 3/9/2017
9.3.0 1,757 3/6/2017
9.2.1 1,722 2/28/2017
9.2.0 1,808 2/21/2017
9.1.1 1,746 2/15/2017
9.1.0 1,859 2/8/2017
9.0.4 1,846 1/23/2017
9.0.3 1,802 12/20/2016
9.0.2 1,727 12/18/2016
9.0.0 1,794 12/12/2016
8.0.1 1,801 12/10/2016
8.0.0 1,806 11/28/2016
7.0.0 1,793 11/23/2016
6.0.0 2,125 11/17/2016
5.7.0 2,358 11/3/2016
5.6.4 2,325 11/2/2016
5.6.3 2,018 10/30/2016
5.6.2 2,032 10/26/2016
5.6.1 1,987 10/26/2016
5.6.0 2,008 10/24/2016
5.5.0 2,034 10/22/2016
5.4.0 2,070 10/21/2016
5.3.2 2,066 10/16/2016
5.3.1 2,033 9/14/2016
5.3.0 2,097 9/13/2016
5.2.0 2,031 9/11/2016
5.1.0 2,023 9/9/2016
5.0.0 1,973 9/8/2016
4.0.1 2,001 9/8/2016
4.0.0 2,013 9/7/2016
3.6.0 2,014 9/4/2016
3.5.0 2,035 9/1/2016
3.4.0 2,070 8/8/2016
3.3.0 2,092 7/18/2016
3.2.3 2,078 6/28/2016
3.2.2 2,492 6/15/2016
3.2.1 2,064 6/7/2016
3.2.0 2,043 6/5/2016
3.1.0 2,060 5/30/2016
3.0.0 2,130 5/19/2016
2.12.0 2,171 4/10/2016
2.11.0 2,163 4/9/2016
2.10.1 1,876 3/16/2016
2.10.0 2,153 2/17/2016
2.9.1 2,156 12/13/2015
2.9.0 2,115 12/8/2015
2.8.5 2,194 11/27/2015
2.8.4 2,162 11/27/2015
2.8.2 2,134 11/4/2015
2.8.1 2,076 11/4/2015
2.8.0 2,139 11/1/2015
2.7.0 2,311 6/27/2015
2.6.3 2,181 6/16/2015
2.6.2 2,304 6/14/2015
2.6.1 2,198 5/15/2015
2.6.0 2,274 4/13/2015
2.5.3 2,279 1/26/2015
2.5.2 2,513 12/13/2014
2.5.1 2,422 11/18/2014
2.5.0 2,296 10/13/2014
2.4.5 2,227 10/6/2014
2.4.4 2,416 6/3/2014
2.4.3 2,269 6/2/2014
2.4.2 2,279 5/30/2014
2.4.0 2,611 3/14/2014
2.3.2 2,182 2/3/2014
2.3.1 2,041 12/15/2013
2.3.0 2,023 12/14/2013
2.2.2 2,126 12/12/2013
2.2.1 2,095 12/11/2013
2.2.0 2,135 12/8/2013
2.1.0 2,135 12/8/2013
2.0.2 2,178 12/2/2013
2.0.1 2,171 11/26/2013
2.0.0 2,126 11/14/2013
1.2.1 2,100 11/11/2013
1.1.0 2,159 9/5/2013
1.0.0 2,131 9/1/2013