Coldfusion 10 + .NET performance issues
I have a .NET dll with several classes and I am using <cfobject> to access them
inside my coldfusion 10 enterprise based website. The dll is available localy in the webserver and I am able to access it with no problem but the performance is just horrible when I use any function that involves database access.
I am returning a DataTable and then I assign it to a variable
<cfset results = objectinstance.CurrentCUstomers()> I then display it using <cfloop query="results">.
It works but it takes up to 20 seconds. Is ridiculous.
What am I doing wrong? Is there any configurations in the Administrator that I have to set? Any special location were I should place the dll? Actually, loading the object is super fast. Is at the moment when I call the function that everything stalls.
I will appreciate any help. Thanks
