gpt4 book ai didi

c# - 可能的内存泄漏?

转载 作者:太空宇宙 更新时间:2023-11-03 18:46:50 24 4
gpt4 key购买 nike

我正在分析单调中的以下代码,发现很多 Rate 对象都保留在内存中,尽管我清除了它们。

protected void FetchingRates()
{
int count = 0;

while (true)
{
try
{
if (m_RatesQueue.Count > 0)
{
List<RateLog> temp = null;

lock (m_RatesQueue)
{
temp = new List<RateLog>();
temp.AddRange(m_RatesQueue);
m_RatesQueue.Clear();
}

foreach (RateLog item in temp)
{
m_ConnectionDataAccess.InsertRateLog(item);
}

temp.Clear();
temp = null;
}
count++;
Thread.Sleep(int.Parse(ConfigurationManager.AppSettings["RatesIntreval"].ToString()));
}
catch (Exception ex)
{
}
}
}

队列的插入是通过:

public void InsertLogRecord(RateLog msg)
{
try
{
if (m_RatesQueue != null)
{
//lock (((ICollection)m_queue).SyncRoot)
lock (m_RatesQueue)
{
//insert new job to the line and release the thread to continue working.
m_RatesQueue.Add(msg);
}
}
}
catch (Exception ex)
{
}
}

worker 将 rate log 插入 DB 如下:

 internal int InsertRateLog(RateLog item)
{
try
{
SqlCommand dbc = GetStoredProcCommand("InsertRateMonitoring");
if (dbc == null)
return 0;
dbc.Parameters.Add(new SqlParameter("@HostName", item.HostName));
dbc.Parameters.Add(new SqlParameter("@RateType", item.RateType));
dbc.Parameters.Add(new SqlParameter("@LastUpdated", item.LastUpdated));
return ExecuteNonQuery(dbc);
}
catch (Exception ex)
{
return 0;
}
}

有人看到可能的内存泄漏吗?

最佳答案

我建议首先停止吞并所有异常。

关于c# - 可能的内存泄漏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3624336/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com