Sindika.AspNet.Connection
1.5.4
dotnet add package Sindika.AspNet.Connection --version 1.5.4
NuGet\Install-Package Sindika.AspNet.Connection -Version 1.5.4
<PackageReference Include="Sindika.AspNet.Connection" Version="1.5.4" />
<PackageVersion Include="Sindika.AspNet.Connection" Version="1.5.4" />
<PackageReference Include="Sindika.AspNet.Connection" />
paket add Sindika.AspNet.Connection --version 1.5.4
#r "nuget: Sindika.AspNet.Connection, 1.5.4"
#addin nuget:?package=Sindika.AspNet.Connection&version=1.5.4
#tool nuget:?package=Sindika.AspNet.Connection&version=1.5.4
Sindika.AspNet.Connection
Sindika.AspNet.Connection is a .NET library designed to simplify and standardize connection management for various services such as Citus, Kafka, PostgreSQL, RabbitMQ, and Redis. It provides robust tools to configure, validate, and manage these connections efficiently.
Features
Citus Connection Management:
- Simplified connection setup for Citus DB.
- Health checks to ensure availability and performance.
- Configurable settings for database tuning.
Kafka Integration:
- Streamlined connection handling for Kafka brokers.
- Support for producer and consumer setup.
PostgreSQL Support:
- Easy-to-configure connection for PostgreSQL databases.
- Built-in health checks and validation.
RabbitMQ Support:
- Efficient connection management for RabbitMQ messaging.
- Support for queues and message validation.
Redis Integration:
- Configurable connection settings for Redis caching and data storage.
- Supports connection pooling and health checks.
Usage
Citus Connection
Configuration: Use
CitusSettings.cs
to define the necessary settings for connecting to the Citus database.var settings = new CitusSettings { Host = "localhost", Port = 5432, Database = "my_database", Username = "user", Password = "password" };
Connection Manager: Use
CitusConnectionManager
to establish and manage the connection.var manager = new CitusConnectionManager(settings); var connection = manager.GetConnection();
Health Check: Ensure the connection is healthy using
CitusHealthChecker
.var healthChecker = new CitusHealthChecker(); bool isHealthy = healthChecker.CheckHealth(connection);
RabbitMQ
1. RabbitMQ Configuration in appsettings.json
To connect the application with RabbitMQ, add the following configuration in appsettings.json
or appsettings.Development.json
:
"RabbitmqSettings": {
"HostName": "rabbitmq-host",
"Port": 5672,
"UserName": "rabbitmq-username",
"Password": "rabbitmq-password"
}
Note:
- Replace
rabbitmq-host
,rabbitmq-username
,rabbitmq-password
with the appropriate RabbitMQ address. - Do not store sensitive credentials in the code. Use environment variables or secret manager if needed.
2. Register RabbitMQ in Program.cs
Add the following code in Program.cs
to configure RabbitMQ:
using Sindika.AspNet.Connection.Rabbitmq;
var builder = WebApplication.CreateBuilder(args);
var Configuration = builder.Configuration;
Configuration.AddEnvironmentVariables();
// Register RabbitMQ Extensions
builder.Services.AddRabbitMQ(Configuration);
3. Using RabbitMQ Service
Example how to use RabbitmqService
public class OrderService
{
private readonly RabbitmqService _rabbitmqService;
public OrderService(RabbitmqService rabbitmqService)
{
_rabbitmqService = rabbitmqService;
}
public async Task SendMessageAsync()
{
var exchangeConfig = new RabbitmqExchangeConfig
{
Name = "order-exchange",
Type = ExchangeType.Direct,
Durable = true
};
var routingKey = "order.created";
var message = "New order placed";
await _rabbitmqService.PublishMessageAsync(exchangeConfig, routingKey, message);
}
}
Future Plans
- Add implementation for Kafka connection management.
- Extend PostgreSQL, RabbitMQ, and Redis connection support.
- Provide detailed examples for each service.
- Include performance optimization tools.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net9.0
- Confluent.Kafka (>= 2.5.3)
- Microsoft.Extensions.Caching.Memory (>= 9.0.1)
- MongoDB.Driver (>= 3.2.1)
- MQTTnet (>= 4.3.3.952)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 8.0.8)
- RabbitMQ.Client (>= 7.0.0)
- Sindika.AspNet.SecretManager (>= 1.0.1)
- StackExchange.Redis (>= 2.8.16)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Sindika.AspNet.Connection:
Package | Downloads |
---|---|
Sindika.AspNet.Authentication
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.