Ax.Fw.Storage 12.0.1

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

// Install Ax.Fw.Storage as a Cake Tool
#tool nuget:?package=Ax.Fw.Storage&version=12.0.1                

Ax.Fw.Storage

Simple document database; based on SQLite

Why?

I just wanted to create an instance of class and write to it, read from it, list it's elements by key without thinking about "this database's BSON don't support ImmutableDictionary, meh", "that database doesn't support numeric keys, meh", "ah, I can't compare integer row with unsigned integer variable using that database, meh" and so on. Why not "key-value" storage? I also wanted to filter my objects by last changed datetime. That's it. My database is not fast as more "strongly-typed" databases (I think it's 1.1 - 1.5x slower in some scenarios), but it is reliable as any SQLite database.

Usage example:

// getting lifetime
var lifetime = new Lifetime();

// getting db filepath
var dbFile = GetDbPath();

try
{
	// create database or open existing; you can omit lifetime parameter, but you should call `Dispose` in this case
	using var storage = new SqliteDocumentStorage(dbFile, lifetime);
	
	// create document; pair 'namespace - key' is unique; any json serializable data can be stored
	var doc = await storage.WriteDocumentAsync(_namespace: "default", _key: "test-key", _data: "test-data-0", lifetime.Token);

	// retrieve data
	var readDoc = await storage.ReadDocumentAsync(_namespace: "default", _key: "test-key", lifetime.Token);

	Assert.Equal("test-data-0", readDoc?.Data.ToObject<string>());

	// there are also 'simple' documents; 
	// namespace of simple documents is automatically determined by data type or by `SimpleDocumentAttribute`
	var simpleDoc = await storage.WriteSimpleDocumentAsync(_entryId: 123, _data: "test_data", lifetime.Token);

	var readSimpleDoc = await storage.ReadSimpleDocumentAsync<string>(_entryId: 123, lifetime.Token);

	Assert.Equal("test_data", readSimpleDoc?.Data);

	// you also can attach in-memory cache to document storage
	// cache makes read operations significantly faster
	using var cachedStorage = storage.ToCached(_maxValuesCached: 1000, _cacheTtl: TimeSpan.FromSeconds(60));

	// you also can attach retention rules to document storage
	// documents older than certain age will be automatically deleted
	using var storageWithRules = storage
		.WithRetentionRules(TimeSpan.FromHours(1), TimeSpan.FromHours(1), TimeSpan.FromMinutes(10));
}
finally
{
	await lifetime.CompleteAsync();
	new FileInfo(dbFile).TryDelete();
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
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
14.4.237 72 9/19/2024
14.4.236 132 8/11/2024
14.3.235 98 8/10/2024
14.3.234 59 8/5/2024
14.3.233 69 7/29/2024
14.3.232 84 7/23/2024
14.3.231 81 7/22/2024
14.3.230 98 7/17/2024
14.3.229 69 7/17/2024
14.3.228 81 7/11/2024
14.3.227 86 7/10/2024
14.3.226 114 7/3/2024
14.3.225 108 6/14/2024
14.3.224 77 6/7/2024
14.3.223 96 6/6/2024
14.3.222 105 5/17/2024
14.3.221 130 4/12/2024
14.2.219 99 4/11/2024
14.2.218 97 4/10/2024
14.2.217 190 3/29/2024
14.2.216 111 3/27/2024
14.2.215 107 3/22/2024
14.1.212 112 3/11/2024
14.1.211 99 3/11/2024
14.1.210 104 3/6/2024
14.1.208 109 3/6/2024
14.1.206 115 3/2/2024
14.1.205 117 3/1/2024
14.0.204 116 2/19/2024
14.0.203 103 2/16/2024
14.0.201 111 2/15/2024
13.0.200 125 2/10/2024
13.0.199 104 2/10/2024
13.0.198 104 2/10/2024
13.0.197 282 12/10/2023
13.0.196 118 12/10/2023
13.0.195 119 12/9/2023
13.0.194 102 12/6/2023
13.0.192 114 12/5/2023
13.0.191 144 11/26/2023
13.0.189 124 11/24/2023
13.0.186 122 11/23/2023
13.0.185 127 11/22/2023
13.0.182 123 11/18/2023
13.0.181 144 11/14/2023
13.0.180 131 11/12/2023
13.0.179 114 11/10/2023
12.1.178 143 10/25/2023
12.1.177 137 10/24/2023
12.1.176 134 10/21/2023
12.1.175 137 10/21/2023
12.1.173 131 10/16/2023
12.1.172 152 10/15/2023
12.1.171 134 10/15/2023
12.1.170 125 10/15/2023
12.1.168 148 10/15/2023
12.1.167 108 10/14/2023
12.1.166 170 9/7/2023
12.1.165 193 8/28/2023
12.1.164 216 8/15/2023
12.1.163 186 8/14/2023
12.1.162 161 8/14/2023
12.1.161 202 6/20/2023
12.1.160 201 6/10/2023
12.1.158 164 5/31/2023
12.1.157 161 5/22/2023
12.1.7 159 5/21/2023
12.1.0 158 5/19/2023
12.0.21 166 5/18/2023
12.0.20 147 5/18/2023
12.0.19 168 5/10/2023
12.0.18 149 5/4/2023
12.0.17 175 5/3/2023
12.0.16 190 4/30/2023
12.0.15 183 4/30/2023
12.0.13 189 4/27/2023
12.0.12 195 4/27/2023
12.0.10 259 4/15/2023
12.0.9 243 4/6/2023
12.0.8 245 3/27/2023
12.0.7 236 3/27/2023
12.0.3 235 3/22/2023
12.0.2 236 3/22/2023
12.0.1 268 3/1/2023
12.0.0 300 2/11/2023
11.1.10 283 2/11/2023
11.1.9 287 2/10/2023
11.1.8 287 2/6/2023
11.1.7 286 2/5/2023
11.1.6 298 2/4/2023
11.1.5 292 2/4/2023
11.1.4 331 12/30/2022
11.1.3 366 12/26/2022
11.1.2 310 12/26/2022
11.1.1 325 12/25/2022
11.0.0 317 12/24/2022
1.0.0 343 12/24/2022