Hi,
Im seeing a very slow response on Connection.Open() in .NET code on windows and in docker. Both take approx 8 seconds to open a conneciton for the first time. Subsequent attempts (made without restarting the app) take only 5ms or so.
Has anyone else experienced this or can give any advice?
Ive tried to recreate using the old standard .net oracle lib and connection open was very fast
//ConnectionString == "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=10.x.x.x)(PORT=1532))(CONNECT_DATA=(SID=xxx)));User ID=xxxx;Password=xxxx;"
OracleConnection _connectionObject = new OracleConnection(this.ConnectionString);
_connectionObject.Open()
Any help greatly appreciated!