Browse Source

定时释放物理内存,减少内存占用

pull/2/head
nnhy 14 years ago
parent
commit
2fa7018320
  1. 4
      Program.cs

4
Program.cs

@ -2,6 +2,8 @@
using System.Collections.Generic;
using System.Windows.Forms;
using NewLife.Log;
using NewLife.Threading;
using NewLife;
namespace XCoder
{
@ -28,6 +30,8 @@ namespace XCoder
au.VerSrc = "http://files.cnblogs.com/nnhy/XCoderVer.xml";
au.ProcessAsync();
}
new TimerX(s => Runtime.ReleaseMemory(), null, 5000, 10000);
}
catch (Exception ex)
{

Loading…
Cancel
Save