Info
Version: | 7.2.0 |
Author(s): | Shubham Ranjan |
Last Update: | Saturday, October 19, 2024 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/shubhamranjan/dotnet-etcd |
NuGet Url: | https://www.nuget.org/packages/dotnet-etcd |
Install
Install-Package dotnet-etcd
dotnet add package dotnet-etcd
paket add dotnet-etcd
dotnet-etcd Download (Unzip the "nupkg" after downloading)
Dependencies
.NETStandard 2.0
- DnsClient(>= 1.3.2)
- Google.Protobuf(>= 3.14.0)
- Grpc.Core(>= 2.34.0)
- DnsClient(>= 1.3.2)
- Google.Protobuf(>= 3.14.0)
- Grpc.Core(>= 2.34.0)
- DnsClient(>= 1.3.2)
- Google.Protobuf(>= 3.14.0)
- Grpc.Core(>= 2.34.0)
- DnsClient(>= 1.3.2)
- Google.Protobuf(>= 3.14.0)
- Grpc.Core(>= 2.34.0)
- DnsClient(>= 1.3.2)
- Google.Protobuf(>= 3.14.0)
- Grpc.Core(>= 2.34.0)
Tags
etcd is a distributed key value store that provides a reliable way to store data across a cluster of machines.
It’s open-source and available on GitHub. etcd gracefully handles leader elections during network partitions and will tolerate machine failure, including the leader.
Your applications can read and write data into etcd.
A simple use-case is to store database connection details or feature flags in etcd as key value pairs. These values can be watched, allowing your app to reconfigure itself when they change.
Advanced uses take advantage of the consistency guarantees to implement database leader elections or do distributed locking across a cluster of workers.