<configSections>
<section name="beitmemcached" type="System.Configuration.NameValueSectionHandler" />
</configSections>
<beitmemcached>
<add key="memcached" value="116.255.230.146:11211" />
<add key="memcached_resume_search" value="116.255.230.146:11211" />
</beitmemcached>
/// <summary>
/// Memcached对象
/// </summary>
private MemcachedClient mmc = MemcachedClient.GetInstance(DALConfig.memcached_resume_search);
/// <summary>
/// 简历ID的MemcachedKey
/// </summary>
private readonly static string ResumeIdsKey = "resumeids";
/// <summary>
/// 根据简历id列表获取简历信息列表
/// </summary>
/// <param name="ids">简历id列表</param>
/// <returns></returns>
public List<My_ResumeQueryInfo_MG> SearchNewResumeByIDs(IEnumerable<int> ids, IMongoSortBy sortBy = null)
{
if (sortBy == null)
{
sortBy = SortBy.Descending("date");
}
string strQueryHasCode = string.Join(",", ids).GetHashCode().ToString();
var mmcData = mmc.Get(ResumeInfoKey + strQueryHasCode);
List<My_ResumeQueryInfo_MG> list = null;
if (mmcData != null)
{
string strmmc = mmcData.ToString();
if (strmmc.Length > 0)
{
list = JsonHelper.jsonDes<List<My_ResumeQueryInfo_MG>>(strmmc) as List<My_ResumeQueryInfo_MG>;
foreach (My_ResumeQueryInfo_MG item in list)
{
item.UpdateDate = item.UpdateDate.ToLocalTime();
}
}
else
{
list = new List<My_ResumeQueryInfo_MG>();
}
}
else
{
if (!ids.Any())
return new List<My_ResumeQueryInfo_MG>();
list = new List<My_ResumeQueryInfo_MG>(cur);
if (list != null && list.Count > 0)
{
mmc.Set(ResumeInfoKey + strQueryHasCode, JsonHelper.json(list), DateTime.Now.AddMinutes(60));
}
}
return list;
}
欢迎光临 苏飞论坛 (http://www.sufeinet.com/) | Powered by Discuz! X3.4 |