mvc3 でファイル依存キャッシュを実装しようとしています。私はMVCが初めてなので、検索したGoogleを閲覧しましたが、何の助けも得られませんでした.
私たちの仲間の誰かが私を助けることができますか? またはこれに対する回避策は何ですか?
asp.net で行っていることと同じことを試みましたが、エラーが発生しました。
私が試したコード:
public ActionResult About()
{
Cache.Insert("DropDownData", "", new System.Web.Caching.CacheDependency(Server.MapPath("~/testxml.xml")));
return View();
}
私が得たエラー:
An object reference is required for the non-static field, method, or property 'System.Web.Caching.Cache.Insert(string, object, System.Web.Caching.CacheDependency)