开发者

WCF Windows Service not releasing resources/memory after every call

I have created WCF application which is running on开发者_运维知识库 Windows Service. It was installed using Windows Installer. I have followed procedure mentioned in following article for same.

http://msdn.microsoft.com/en-us/library/bb332338.aspx#msdnwcfhc_topic4

Most WCF properties are kept as default for net.tcp protocol, per call instance and so on.

Memory consumption of service keeps on increasing after every call and does not decrease. At the end it throws OutOfMemory consumption.

Application returns very heavy string based data. With memory-profiler I found memory is still allocated to string objects and increases during call.

As per my understanding string is managed objects should release data once out of scope.

Let me know if any other configuration/coding information is needed specifically.


There must be something keeping references to those strings in the code. Can you use your profiler to trace the references that are keeping the string objects alive?


After many unsuccessful attempts to handle LOH (http://msdn.microsoft.com/en-us/magazine/cc534993.aspx) which was very large string in my context, I have created custom class to handle it.

Instead of storing large string in single object am storing it as collection of small strings in custom object. .NET disposed it properly without creating above mentioned problem.

Other possible solution with worked for me is to use file object to store large file and access it as text reader. This works well and keeps footprint of application small. Unfortunately for me it did not work and accessing file location was not allowed for application.


It would be very difficult to answer this question without some code to look at. You can always call GC.Collect(GC.MaxGeneration) to force garbage collection and see if this doesn't reduce your memory consumption. Ideally this would only be temporary code to track down what is going on in the application. If forcing garbage collection does not reduce memory consumption then references to the strings must be being retained, via static member variables or whatever: having no conception of what the code is, any theory would be a shot in the dark

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜