English 中文(简体)
我的银星应用为什么使用如此多的未经管理的记忆?
原标题:Why is my Silverlight application using so much un-managed memory?

I have a rather simple Silverlight application, lately we ve been having reports from users of the application crashing after several hours of use (4+). We started digging into the application and noticed that the un-managed portion of memory being used by the application starts very high and continues to grow unchecked. The other heaps seem to be managed just fine. I ve done a lot of research and even went as far removing all images from my application and the un-managed memory continues to grow.

此时我只想到的是,在我的申请中,我完全消耗了所有未经管理的记忆,我可以做些什么。 这里是我在最初负荷后申请的缩略语,因为你可以看到,我已经利用了100多个未管理的记忆空间。 我只想到这里任何指导,说明哪些目标可以用于未经管理的记忆,以及用什么来减少我申请的未经管理的记忆。 感谢!

“Ants

我用了另一张缩略语或两部。 NET Memory Profiler, 看来,Kernel-HeapMemory是最大的chu。 如果没有这种帮助,我就认为我会把它推向前进。

enter image description here

最佳回答

http://blogs.msdn.com/b/davbr/archive/02/01/clrprofiler-v4-released.aspx”rel=“nofollow” 我过去曾利用这一机会解决记忆问题。

问题回答

暂无回答




相关问题
Silverlight Rich text box control

Our team decided that we need our own custom Rich text box control for Silverlight app we are developing. We looked at existing controls mentioned at A good rich text control for Silverlight but ...

Silverlight ImageBrush not rendering (with Bing Map Control)

I m trying to add an image to a Pushpin instance from the Silverlight Bing Map Control, but I can t seem to get it to render (the pushpin renders fine). This is probably a general WPF question rather ...

Silverlight OpenFileDialog DoEvents equivalent

I m processing large files after they are selected by the user. My code looks like the following: if (FileDialog.ShowDialog() == true) { // process really big file } This freezes up the UI so ...

list of controls with templates in silverlight

Does anyone know where to find a list of controls that you can set the template on in Silverlight? I ve wasted several hours now trying to create control templates only to find that the control doesn ...

Silverlight, Updating the UI during processing

I have a simple silverlight multifile upload application, and i want to provide the user with some feedback, right now its only in a test phase and i dont have the webservice. Somehow i cant get the ...

Silverlight 3 - FindName returns null

This looks a bug to me.. Using Silverlight 3 and i have a user control defined in XAML and trying to access the object during runtime returns a null. <Grid> <common:CommonGridEditPanel x:...

silverlight 3 collection binding

Someone please help me understand why this binding does not work... I have a class called SelectionManager with a property called dates which is populated by a WCF service. The property is an ...

热门标签