我希望每天两次缓存活动目录数据,即电子邮件,名字和姓氏。这应该发生在幕后,可能在global.aspx application.start()中。现在,当我想获取1700(我的应用程序允许浏览用户的功能)用户时,我会从缓存数据中执行此操作。我的代码在Asp.net C#。
有人可以告诉我这样做的方法。
答案 0 :(得分:5)
我的代码在第一次访问时运行(您可以通过在global.asax文件中添加几行来启动此应用程序)。它将缓存的数据存储在ASP.Net缓存中12小时。 12小时后,缓存将在下次访问数据时刷新。
public class UserInfo
{
public static List<UserInfo> UserInfoCache {
get{
if(HttpContext.Current.Cache["CachedUserList"] == null) {
PrincipalContext ctx = new PrincipalContext(ContextType.Domain);
PrincipalSearcher ps = new PrincipalSearcher(new UserPrincipal(ctx) { SamAccountName = "*" });
var users = ps.FindAll();
var result = from c in users
let u = (UserPrincipal)c
select new UserInfo() { Email = u.EmailAddress, FirstName = u.GivenName, LastName = u.Surname };
HttpContext.Current.Cache.Insert("CachedUserList", result, null, DateTime.Now.AddHours(12), System.Web.Caching.Cache.NoSlidingExpiration);
}
return (List<UserInfo>)HttpContext.Current.Cache["CachedUserList"];
}
}
public string Email { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}