paip.提升性能---C#.NET程序内存占用过多以及OutOfMemory解决方法

本文介绍了一种方法,通过监测内存占用并在达到99M时调用SetProcessWorkingSetSize方法,实现C#程序内存的自动回收。文章详细阐述了如何使用PerformanceCounter进行内存监测,并提供了关键代码段。同时,介绍了使用CLRProfiler等工具进行内存分析,以及通过ProfilerAPI进行性能调试。最后讨论了GC.Collect()方法的实际效果和SetProcessWorkingSetSize的内存管理原理。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

paip.提升性能---C#.NET程序内存占用过多以及OutOfMemory解决方法


作者Attilax ,  EMAIL:1466519819@qq.com 




需要的效果是,监测内存占用,当物理内存占用超过99M时,调用SetProcessWorkingSetSize方法回收内存。。
在WIN7任务栏,工作集(工作设置内存)指的是程序使用的整个内存(缓存+物理内存),而内存 - 专用工作集,它是工作集的子集,它专门描述了某进程所占用的物理内存大小。






引用 MOLEI.DLL
代码:
   private void Form1_Load(object sender, EventArgs e)
        {
   new memory().start();
}




--------------------框架内全部源码:------------------------
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Diagnostics;
using System.Runtime.InteropServices;


namespace m
{
    class memory
    {
        internal void start()
        {
          
               //c452308 add txt2list
          Thread t = new Thread(new ParameterizedThreadStart(
          delegate(object obj)
          {
             
              while (true)
              {


                  Thread.Sleep(3000);
                  float mem=getMem();
                  if(mem>99)
                  {
                      ClearMemory();
                      Console.WriteLine("--timex clr mm clear finish " + filex.getFilename());
                  }
                  Console.WriteLine("--timex clr mm "+filex.getFilename());
                  


              }




          }));
          t.Name = " --start timex thread 4 clear memory";
          t.IsBackground = true;
          t.Priority = ThreadPriority.Lowest;
          t.Start(null);
        }
 


        private float getMem()
        {
            string procName = Process.GetCurrentProcess().ProcessName;
            using (PerformanceCounter pc = new PerformanceCounter("Process", "Working Set - Private", procName))
                  {
                        float r= (pc.NextValue() / 1024/1024);
                        return r;
            }
        }


        #region 内存回收
        [DllImport("kernel32.dll", EntryPoint = "SetProcessWorkingSetSize")]
        public static extern int SetProcessWorkingSetSize(IntPtr process, int minSize, int maxSize);
        /// <summary>
        /// 释放内存
        /// </summary>
        public static void ClearMemory()
        {
                 GC.Collect();
            //     GC.WaitForPendingFinalizers();
            if (Environment.OSVersion.Platform == PlatformID.Win32NT)
            {
                SetProcessWorkingSetSize(System.Diagnostics.Process.GetCurrentProcess().Handle, -1, -1);
            }
        }
        #endregion
    }
}






检测程序使用最大内存的情况
-------------------------------




运行CLRProfiler,点击Start Application选择CLRProfilerTestDemo.exe,将会运行此程序,运行一段时间后,点击Kill Application,CLRProfiler将会保存日志显示分析结果







需要查看的参数:FINALLY HEAP  BYTES。指明程序实际最终使用的内存大小。。很可能总共使用过700,但是GC了680M,实际只有20M。。打开此直言图。。选中了大的块》》右键


》show who alocate.。。可以打开一个方法调用过程,其中的对象占用大小。。




垃圾收集统计信息:GC统计信息。总共进行了4501次0代垃圾回收! 






其它性能调试工具:
---------------------
使用性能测试工具dotTrace 3.0,它能够计算出你程序中那些代码占用内存较多
** Profiler API 概述
当各种事件发生时,CLR 将调用这个回调接口的方法(参见图 2)。 


  下面是需要注意的主要分析器回调方法:RuntimeSuspendStarted、RuntimeSuspendFinished、RuntimeResumeStarted、ObjectAllocated、ObjectsAllocatedByClass、


MovedReferences、RootReferences 和 ObjectReferences。
  
  如果不熟悉 Profiler API,可以阅读 Profiler.doc(位于 Visual Studio .NET 安装目录下面的 \FrameworkSDK\Tool Developers Guide\docs 文件夹中),来了解某些更


深入的信息。






总结:
-------------------
调用  GC.Collect();实际上不起任何作用,pass
..资料上说SetProcessWorkingSetSize只是把物理内存移至了硬盘缓存上。实际上,调用此方法,不管理缓存还有,物理内存都大大减少了..




参考:
------------
C#?Winform应用程序占用内存较大解决方法整理_原建顺_新浪博客.htm
.NET程序内存分析工具CLRProfiler的使用(性能测试)%20-%20一路看.htm
使用.NET Profiler API检查并优化程序的内存使用_雨枫技术教程网.htm
【NET程序性能分析 - 下篇】使用CLR探查分析。NET程序 - DebugLZQ - 博客园.htm
ANTS Memory Profiler 7.4 C#程序内存分析工具 非破解 免费14天 - 下载频道 - youkuaiyun.com
使用CLR Profiler分析.NET程序内存不断上升的图文教程
使用 SetProcessWorkingSetSize 降低程序内存_无牙子的流水账簿_百度空间.htm
.NET(C#):获取进程的内存私有工作集 - _Mgen - 博客园.htm
windows 7 任务管理器 内存相关项目的解释_2012-7-16_NetNote_网记.htm
Performance Counter的使用 - jiangxinyu的专栏 - 博客频道 - youkuaiyun.com.htm
### PAIP编程珠玑中的示例代码解释 PAIP(Paradigms of Artificial Intelligence Programming)是一本深入探讨人工智能编程范式的书籍,其中包含了大量 Lisp 编写的程序实例。这些例子不仅展示了如何实现特定的人工智能算法,还提供了关于良好软件工程实践的重要见解。 #### 示例:通用求解器框架 书中介绍了一个名为 `defun` 的宏来定义函数,在构建通用问题解决器时非常有用[^1]: ```lisp (defun solve (problem) "Find a solution to the given problem." (let ((solution nil)) ;; Attempt to find a solution using backtracking. (labels ((try-next-option () (when (not solution) (if (no-more-options-p ()) (return-from try-next-option nil) (let* ((option (next-option))) (cond ((goal-reached-p option) (setf solution option)) (t (push-state option) (solve problem) (pop-state)))))))) (try-next-option) solution))) ``` 这段代码实现了回溯法解决问题的一般模式。通过递归调用自身并尝试不同的选项直到找到解决方案为止。如果当前路径无法通向目标,则会恢复之前的状态继续探索其他可能性。 此方法能够有效地处理许多复杂的组合优化类问题,并且由于其灵活性可以很容易地适应各种具体应用场景下的需求变化。 #### 示例:自然语言理解模块 另一个重要的部分涉及到了自然语言处理技术的应用案例——基于语法分析树结构来进行语义解析: ```lisp (defun parse-sentence (sentence) "Parse SENTENCE into its constituent parts and build an interpretation tree." (multiple-value-bind (subject verb-object) (split sentence 'verb) `(sentence :subject ,(parse-noun-phrase subject) :action ,verb-object))) (defun parse-noun-phrase (np-string) "Interpret NP-STRING as either a simple noun or compound phrase." ...) ``` 上述片段演示了如何将输入字符串分割成主谓宾成分,并进一步解析名词短语的具体含义。这种层次化的表示方式有助于后续更高级别的推理操作以及对话管理等功能的设计与实现。 #### 示例:专家系统规则引擎 最后值得一提的是书中对于专家系统的讨论,特别是有关于事实库管理和匹配机制的部分: ```lisp (defstruct fact id pattern bindings) (defun match-patterns (pattern facts) "Return all FACTS that unify with PATTERN, along with their BINDINGS." ...) (defun add-fact (kb new-fact) "Add NEW-FACT to knowledge base KB after checking consistency against existing rules." ...) ``` 这里展示了一种简单而有效的知识表达形式及其相应的查询接口设计思路。通过对模式进行统一化计算从而快速定位符合条件的事实条目;而在更新数据库前则需确保新加入的信息不会引起逻辑矛盾等问题的发生。 以上仅是从《Programming Pearls》一书摘取的一些精彩片段,实际上该著作涵盖了更为广泛的内容领域和技术细节等待读者去发掘学习。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值