L
Laura Stern
Guest
When you call something asynchronously, the performance of the client side caller should not be affected at all by what the asynchronous call is doing. I presume when you say "I checked resource utilization of that main process, It is showing constant increase in virtual memory", I presumed you are talking about the server process. But then you say you suspect the async-request-handle which is on the client side. This is a tiny amount of memory and you get one handle per call. Yes, you should be deleting it when the request completes, but I doubt that you would see a spike in memory from this in any case, unless you were making thousands of calls. What is the client side doing while the async routine is running on the server?
Continue reading...
Continue reading...