![]() |
VOOZH | about |
dotnet add package Aoxe.Extensions.Configuration.Etcd.Ini --version 2025.1.0
NuGet\Install-Package Aoxe.Extensions.Configuration.Etcd.Ini -Version 2025.1.0
<PackageReference Include="Aoxe.Extensions.Configuration.Etcd.Ini" Version="2025.1.0" />
<PackageVersion Include="Aoxe.Extensions.Configuration.Etcd.Ini" Version="2025.1.0" />Directory.Packages.props
<PackageReference Include="Aoxe.Extensions.Configuration.Etcd.Ini" />Project file
paket add Aoxe.Extensions.Configuration.Etcd.Ini --version 2025.1.0
#r "nuget: Aoxe.Extensions.Configuration.Etcd.Ini, 2025.1.0"
#:package Aoxe.Extensions.Configuration.Etcd.Ini@2025.1.0
#addin nuget:?package=Aoxe.Extensions.Configuration.Etcd.Ini&version=2025.1.0Install as a Cake Addin
#tool nuget:?package=Aoxe.Extensions.Configuration.Etcd.Ini&version=2025.1.0Install as a Cake Tool
English |
Let the etcd as a configuration source, include several configuration sources and several parsers (Json / Xml / Ini / Toml / Yaml).
The Microsoft.Extensions.Configuration provide develops out of box and powerful configuration functions. It supports several formats (Json / Xml / Ini) to covers most usage scenarios. But still has some points I think it can be improved.
Every configuration is base on its stream version with the same format, like JsonConfigurationProvider / JsonStreamConfigurationProvider and XmlConfigurationProvider / XmlStreamConfigurationProvider etc. In the stream provider it use serializer to parse the structure stream into a Dictionary<string, string?>. But in these offical configuration providers the parser classes or functions were defined to internal or pravite.
Like Microsoft.Extensions.Configuration.Json was base on System.Text.Json, it is a great package but someone prefer Newtonsoft.Json or other serializers with some reasons, and the Microsoft.Extensions.Configuration.NewtonsoftJson has been set to deprecate from 2020. And then in addition to Json / Xml / Ini, we may now need other configration formats like Toml / Yaml etc.
With the microservices and cloud, the Centralized Configuration will be more and more important. Microsoft has provided some Centralized Configuration sources for us, but they are usually based on azure. All the more reason to be cloud neutrality when cloud is so powerful, some projects and services prefer privately deployed key-value stores.
For parser, Aoxe.Extensions.Configuration abstracts the concept called Flanttener to parse and flatten the stream into Dictionary<string, string?>. Then now we have the following implementations:
Base on Microsoft.Extensions.Configuration.Ini and with the same behavior.
ini-parser is A .NET, Mono and Unity3d compatible(*) library for reading/writing INI data from IO streams, file streams, and strings written in C#.
Also implements merging operations, both for complete ini files, sections, or even just a subset of the keys contained by the files.
(*) This library is 100% .NET code and does not have any dependencies on Windows API calls in order to be portable.
Base on Microsoft.Extensions.Configuration.Json and with the same behavior.
Newtonsoft.Json is a popular high-performance JSON framework for .NET. With this implement we can pass JsonSerializerSettings for cumstomize deserialize.
SharpYaml is a .NET library that provides a YAML parser and serialization engine for .NET objects, compatible with CoreCLR.
Tomlet is a Zero-Dependency, model-based TOML De/Serializer for .NET.
Tomlyn is a TOML parser, validator and authoring library for .NET Framework and .NET Core.
Base on Microsoft.Extensions.Configuration.Xml and with the same behavior.
YamlDotNet is a .NET library for YAML. YamlDotNet provides low level parsing and emitting of YAML as well as a high level object model similar to XmlDocument. A serialization library is also included that allows to read and write objects from and to YAML streams.
In addition to configuration files, modern services increasingly rely on centralized configuration. For this purpose there are these configuration sources:
Because the abstractions of Flantten, Aoxe.Extensions.Configuration support difference configuration files, like Json, Xml, Ini, Toml and Yaml.
Consul is a service networking solution that provides a full-featured control plane with service discovery, configuration, and segmentation functionality. It is designed to make it easy to manage and secure service-to-service communication across distributed infrastructure.
Etcd is a distributed key-value store that provides a reliable way to store data across a cluster of machines. It is used to store configuration data, metadata, and other critical information that needs to be accessed by distributed systems.
Redis (Remote Dictionary Server) is an open-source, in-memory data structure store that can be used as a database, cache, and message broker. It supports various data structures such as strings, hashes, lists, sets, sorted sets, bitmaps, hyperloglogs, and geospatial indexes.
Taking Json format configuration as an example, we now have a json content which its key is 'test-json' like below:
{
"stringKey": "stringValue",
"numberKey": 123,
"booleanKey": true,
"nullKey": null,
"nestedObject": {
"nestedStringKey": "nestedStringValue",
"nestedNumberKey": 456,
"nestedBooleanKey": false,
"nestedNullKey": null
},
"arrayKey": [
"arrayStringValue",
789,
false,
null,
{
"arrayNestedObjectKey": "arrayNestedObjectValue"
}
]
}
And then can get this package via nuget.
PM> Install-Package Aoxe.Extensions.Configuration.Etcd.Json
Now we can use it like this:
var configBuilder = new ConfigurationBuilder().AddEtcdJson(
new EtcdClientOptions("https://127.0.0.1")
{
ConfigureChannelOptions = options =>
options.Credentials = ChannelCredentials.Insecure
},
"/test-json"
);
var configuration = configBuilder.Build();
var value = configuration["nestedObject:nestedStringKey"]; // the value is "nestedStringValue"
Thank`s for JetBrains for the great support in providing assistance and user-friendly environment for my open source projects.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.