memcached.rar
(35.27 KB, 下载次数: 21)
[C#] 纯文本查看 复制代码 <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>
定义代码
[C#] 纯文本查看 复制代码 /// <summary>
/// Memcached对象
/// </summary>
private MemcachedClient mmc = MemcachedClient.GetInstance(DALConfig.memcached_resume_search);
/// <summary>
/// 简历ID的MemcachedKey
/// </summary>
private readonly static string ResumeIdsKey = "resumeids";
[C#] 纯文本查看 复制代码
/// <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;
}
驱动Dll
BeITMemcached.zip
(15.64 KB, 下载次数: 10)
|