Thread-safe, non-blocking, managed pool of re-usable resources, with a specified minimum and optional maximum number of resources, and optional expiry time for resources to be cleaned up if not used for a time.
dotnet add package AsyncResourcePool
Behaviour of AsyncResourcePool can be specified using AsyncResourcePoolOptions.
| Property | Default | Description |
|---|---|---|
MinNumResources | N/A | The minimum number of resources that will be maintained by the pool. This number of resources will be created regardless of whether or not they are requested. If a resource is requested an allocated, an additional resource will be created to maintain the pool size. |
MaxNumResources | int.MaxValue | The maximum number of resources that the pool is allowed to create. |
ResourcesExpireAfter | null | If a resource is unused for this time, it will be dispsosed. If this causes the number of available resources to drop below the minimum, additional resources will be created to replace the disposed ones. |
MaxNumResourceCreationAttempts | 3 | Maximum number of attempts for creating a resource before an exception is thrown and passed back to the requestor |
ResourceCreationRetryInterval | 1 second | Amount of time to wait after a failed resource creation attempt before trying again |
https://github.com/snowflakedb/snowflake-connector-net
- Define a
ConnectionPoolclass which consumesAsyncResourcePoolinternally
publicsealedclassConnectionPool{privatereadonlyIAsyncResourcePool<SnowflakeDbConnection>_resourcePool;publicConnectionPool(stringconnectionString){varconnectionFactory=GetConnectionFactoryFunc(connectionString);varasyncResourcePoolOptions=newAsyncResourcePoolOptions(minNumResources:20,resourcesExpireAfter:TimeSpan.FromMinutes(15));_resourcePool=newAsyncResourcePool<SnowflakeDbConnection>(connectionFactory,asyncResourcePoolOptions);}publicTask<ReusableResource<SnowflakeDbConnection>>Get(CancellationTokencancellationToken)=>_resourcePool.Get(cancellationToken);publicvoidDispose()=>_resourcePool.Dispose();privatestaticFunc<Task<SnowflakeDbConnection>>GetConnectionFactoryFunc(stringconnectionString){returnasync()=>{varconn=newSnowflakeDbConnection{ConnectionString=connectionString};awaitconn.OpenAsync();returnconn;};}}- Optionally register
ConnectionPoolasSingletonin dependency injection configuration
services.AddSingleton<ConnectionPool>(sp => new ConnectionPool(...));
- Consume
ConnectionPool
publicclassConnectionConsumer{privatereadonlyConnectionPool_connectionPool;publicConnectionConsumer(ConnectionPoolconnectionPool){_connectionPool=connectionPool;}publicasyncTaskDoSomething(CancellationTokencancellationToken){using(varreusableConnection=await_connectionPool.Get(cancellationToken)){varconnection=reusableConnection.Resource;// Do something with the connection}}}