【发布时间】:2012-11-06 23:04:52
【问题描述】:
我正在使用IEqualityComparer 匹配使用 LINQ to Entities 的数据库中的“近似重复项”。
记录集约为 40,000,此查询大约需要 15 秒才能完成,我想知道是否可以对下面的代码进行任何结构更改。
我的公共方法
public List<LeadGridViewModel> AllHighlightingDuplicates(int company)
{
var results = AllLeads(company)
.GroupBy(c => c, new CompanyNameIgnoringSpaces())
.Select(g => new LeadGridViewModel
{
LeadId = g.First().LeadId,
Qty = g.Count(),
CompanyName = g.Key.CompanyName
}).OrderByDescending(x => x.Qty).ToList();
return results;
}
获取潜在客户的私人方法
private char[] delimiters = new[] { ' ', '-', '*', '&', '!' };
private IEnumerable<LeadGridViewModel> AllLeads(int company)
{
var items = (from t1 in db.Leads
where
t1.Company_ID == company
select new LeadGridViewModel
{
LeadId = t1.Lead_ID,
CompanyName = t1.Company_Name,
}).ToList();
foreach (var x in items)
x.CompanyNameStripped = string.Join("", (x.CompanyName ?? String.Empty).Split(delimiters));
return items;
}
我的 IEqualityComparer
public class CompanyNameIgnoringSpaces : IEqualityComparer<LeadGridViewModel>
{
public bool Equals(LeadGridViewModel x, LeadGridViewModel y)
{
var delimiters = new[] {' ', '-', '*', '&', '!'};
return delimiters.Aggregate(x.CompanyName ?? String.Empty, (c1, c2) => c1.Replace(c2, '\0'))
== delimiters.Aggregate(y.CompanyName ?? String.Empty, (c1, c2) => c1.Replace(c2, '\0'));
}
public int GetHashCode(LeadGridViewModel obj)
{
var delimiters = new[] {' ', '-', '*', '&', '!'};
return delimiters.Aggregate(obj.CompanyName ?? String.Empty, (c1, c2) => c1.Replace(c2, '\0')).GetHashCode();
}
}
【问题讨论】:
-
我将 delimiters 数组设为静态只读,但我怀疑这是否会大大提高性能。
-
是的,您确实应该在数据库端尽可能多地执行此操作,而不是全部在内存中。这很可能最终会快得多。
标签: c# performance linq