Activity overview
Latest activity by Dans
long startTime3 = Utils.GetPerformanceCounter();
if (!CacheManager.Exists(key))
{
_log.Info(string.Format("Around cachemanager check in GetLRReponse - took {0} ", Math.Round(Utils.GetPerformanceTimeElapsed(startTime3), 3)));
is returning 2 hits taking 2.32 secs and my logging says
2008-05-02 15:11:31,544 INFO Ttl.HotelPackages.Services.Hotel.HotelService [(null)] - Around cachemanager check in GetLRReponse - took 0.000
2008-05-02 15:11:39,606 INFO Ttl.HotelPackages.Services.Hotel.HotelService [(null)] - Around cachemanager check in GetLRReponse - took 0.000
...there must be some sort of error somewhere or the tool would be of no use at all.....
NB The cache I am using is from the microsoft enterprise library / comments
long startTime3 = Utils.GetPerformanceCounter();
if (!CacheManager.Exists(key))
{
_log.Info(string.Format("Around cachemanager check in GetLRReponse - took {0} ", Math.Round(Utils.GetPerformanceTim...
Strange timings
I have profiled some of my code
long startTime2 = Utils.GetPerformanceCounter();
response = XDocument.Load(request.ToString());
_log.Info(string.Format("Around xdoc load in GetLRReponse {0} ", Math...
FYI - I was using a version that my colleague downloaded from your site which I then upgraded to 3.2 via your site.
...it would be rather dumb of me to be evaluating your software and get it from a differnet source [image] / comments
FYI - I was using a version that my colleague downloaded from your site which I then upgraded to 3.2 via your site.
...it would be rather dumb of me to be evaluating your software and get it from a...
Crash from v3.2.0.27
It's a .net 3.5 app
[FileNotFoundException: Could not load file or assembly 'RedGate.Profiler.Instrumentation3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=dfe6a4d9ee4c82c0' or one of its depe...