| bio | website | byterot.blogspot.com |
|---|---|---|
| location | United Kingdom | |
| age | 44 | |
| visits | member for | 2 years, 8 months |
| seen | 10 hours ago | |
| stats | profile views | 2,962 |
"For when I am weak then I am strong"
Solution Architect, computer vision enthusiast (published a few papers, demo here) and ex-medical doctor. Working mainly as a middleware specialist with interests from CLR level details and protocols up to UI level (WPF and HTML+jquery).
Love to be able to help...
My one liner: "My washing machine will talk REST+JSON in 5 years..." [I said this back in 2010] and recently added " using server side JavaScript - perhaps node.js"
Follow me on twitter: @aliostad
|
Jan 3 |
comment |
Where to store external DLL files? @Tyler no. You will call PM> Update-Package in NuGet console. |
|
Dec 30 |
comment |
HttpClient crawling results in memory leak Thanks. collections are high with my code too. I already checked to make sure it is collecting. GC.Collect() is bad anyway and should not touch production other than really exceptional cases (e.g. when hosting CLR in another unmanaged app) |
|
Dec 29 |
comment |
HttpClient crawling results in memory leak @DarrelMiller code is not optimised as I said. Code for CyberInsekt is a lot better and does not throw exception but keeps growing in memory. |
|
Dec 29 |
comment |
HttpClient crawling results in memory leak @DarrelMiller That could be the finalizers kicking in - although in my case I saw up to 1GB memory usage. Gen 2 limit I think is around 20MB, if I remember correctly - in any case I am sure GC has collected. Profiler actually does not point to HttpClient or handler. |
|
Dec 29 |
revised |
HttpClient crawling results in memory leak updated code and added memory profile |
|
Dec 28 |
comment |
HttpClient crawling results in memory leak @usr I just limit the number of requests waiting and check it every second. If I don't this will create 1000s of tasks. |
|
Dec 28 |
asked | HttpClient crawling results in memory leak |
|
Dec 25 |
comment |
c# create xml from byte array @firefox1986 no need to. stackoverflow.com/a/234257/440502 |
|
Dec 21 |
comment |
Property injection in to Web Api controller using Autofac what is implementation of RegisterApiControllers()? |
|
Dec 20 |
comment |
Is there a notification when ASP.NET Web API completes sending to the client @ligos depends what goes wrong. What do you expect to go wrong? Network error? |
|
Dec 20 |
answered | Is there a notification when ASP.NET Web API completes sending to the client |
|
Dec 19 |
revised |
Where to store external DLL files? added 530 characters in body |
|
Dec 19 |
comment |
Fire-forget and One-Way Calls in ASP.NET WebApi This code is potentially dangerous because of unobserved task exceptions. |
|
Dec 18 |
comment |
Fire-forget and One-Way Calls in ASP.NET WebApi @DarrelMiller if you are NOT returning a task then it is fine. But your code is dangerous since you are not observing the task exceptions. |
|
Dec 18 |
awarded | Good Answer |
|
Dec 18 |
comment |
Fire-forget and One-Way Calls in ASP.NET WebApi @DarrelMiller because returning a Task mean the response will not be returned until task is finished which is not the same as what OP wants. |
|
Dec 18 |
comment |
Fire-forget and One-Way Calls in ASP.NET WebApi Well that is the inherent problem with fire and forget on a request-response protocol. But chance is really slim |
|
Dec 18 |
accepted | windbg and SciTech profiler: Failed to load data access DLL for x64 memory dump |
|
Dec 18 |
revised |
Fire-forget and One-Way Calls in ASP.NET WebApi added 9 characters in body |
|
Dec 18 |
revised |
Fire-forget and One-Way Calls in ASP.NET WebApi edited tags |