您好,登錄后才能下訂單哦!
項目比較大有時候會比較卡,雖然有GC自動清理機制,但是還是有不盡人意的地方。所以嘗試在項目啟動文件中,手動寫了一個定時器,定時清理內(nèi)存,加快項目運行速度。
public class Program { [DllImport("psapi.dll")] static extern int EmptyWorkingSet(IntPtr hwProc); //清理內(nèi)存相關(guān) static void Main() { //啟動定時清理內(nèi)存 SetTimer(); } /// <summary> /// 定時清理內(nèi)存 /// </summary> private static void SetTimer() { System.Timers.Timer aTimer = new System.Timers.Timer(); //初始化定時器 aTimer.Interval = 60000;//配置時間1分鐘 aTimer.Elapsed += new System.Timers.ElapsedEventHandler(OnTimedEvent); aTimer.AutoReset = true;//每到指定時間Elapsed事件是到時間就觸發(fā) aTimer.Enabled = true; //指示 Timer 是否應(yīng)引發(fā) Elapsed 事件。 } //定時器觸發(fā)的處理事件 private static void OnTimedEvent(Object source, ElapsedEventArgs e) { //清理內(nèi)存 GC.Collect(); GC.WaitForPendingFinalizers(); Process[] processes = Process.GetProcesses(); foreach (Process process in processes) { //以下系統(tǒng)進程沒有權(quán)限,所以跳過,防止出錯影響效率。 if ((process.ProcessName == "System") && (process.ProcessName == "Idle")) continue; try { EmptyWorkingSet(process.Handle); } catch { } } } }
以上所述是小編給大家介紹的C#中的System.Timers.Timer定時器的使用和定時自動清理內(nèi)存應(yīng)用,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。