8

HttpCacheとSingletonのアプローチを理解するのに少し混乱しています。

私のアプリケーションはAsp.netMVCを使用しており、シナリオでは、変更されないデータのリストと、めったに変更されない可能性のあるデータがあります。

このタイプのデータ用にシングルトンリポジトリを使用してアプリケーションを開発およびデプロイしました。それは素晴らしいパフォーマンスを発揮します。唯一の問題は、まれなケースが発生した場合、IISを再起動して有効にする必要があることです。

最善の解決策は何ですか。

シングルトン実装

public class SingletonRepository : ISingletonRepository
    {
        private static SingletonRepository singleInstance;

        private readonly IStateRepository stateRepo;
        private readonly ICountryRepository countryRepo;
        private readonly ITDPaymentModeRepository paymentModeRepo;
        private readonly ITDPlanRepository planRepo;
        private readonly ITDOrderTypeRepository orderTypeRepo;
        private readonly IKeywordRepository keywordRepo;
        private readonly IAgencyRepository agencyRepo;

        private readonly IList<AT_STATE> lstState;
        private readonly IList<AT_COUNTRY> lstCountry;
        private readonly IList<TDPaymentMode> lstPaymentMode;
        private readonly IList<TDPlan> lstPlan;
        private readonly IList<TDOrderType> lstOrderType;
        private readonly IList<Keyword> lstKeyword;
        private readonly IList<Agency_MST> lstAgency;

        private SingletonRepository()
        {
            stateRepo = new StateRepository();
            countryRepo = new CountryRepository();
            paymentModeRepo = new TDPaymentModeRepository();
            planRepo = new TDPlanRepository();
            orderTypeRepo = new TDOrderTypeRepository();
            keywordRepo = new KeywordRepository();
            agencyRepo = new AgencyRepository();

            lstState = stateRepo.GetAll().Where(x => x.CountryId == 101).ToList();
            lstCountry = countryRepo.GetAll().ToList();
            lstPaymentMode = paymentModeRepo.GetAll().ToList();
            lstPlan = planRepo.GetAll().ToList();
            lstOrderType = orderTypeRepo.GetAll().ToList();
            lstKeyword = keywordRepo.GetAll().ToList();
            lstAgency = agencyRepo.GetAll().ToList();

            //lstState = stateRepo.GetAll().Take(20).ToList();
            //lstCountry = countryRepo.GetAll().Take(20).ToList();
            //lstPaymentMode = paymentModeRepo.GetAll().Take(20).ToList();
            //lstPlan = planRepo.GetAll().Take(20).ToList();
            //lstOrderType = orderTypeRepo.GetAll().Take(20).ToList();
            //lstKeyword = keywordRepo.GetAll().Take(20).ToList();
            //lstAgency = agencyRepo.GetAll().Take(20).ToList();
        }

        public static SingletonRepository Instance()
        {
            return singleInstance ?? (singleInstance = new SingletonRepository());
        }

        public IList<AT_STATE> GetState()
        {
            return this.lstState;
        }
        public IList<AT_COUNTRY> GetCountry()
        {
            return this.lstCountry;
        }

        public IList<TDPaymentMode> GetPaymentMode()
        {
            return this.lstPaymentMode;
        }

        public IList<TDPlan> GetPlan()
        {
            return this.lstPlan;
        }

        public IList<TDOrderType> GetOrderType()
        {
            return this.lstOrderType;
        }

        public IList<Keyword> GetKeyword()
        {
            return this.lstKeyword;
        }

        public IList<Agency_MST> GetAgency()
        {
            return this.lstAgency;
        }      

    }

}

4

2 に答える 2

8

通常、シングルトン パターンを使用する目的は、静的データ ストレージではありません。1 つのオブジェクト インスタンスだけが特定のアクションを実行できるようにする場合は、シングルトンを使用する必要があります。高速かもしれませんが、ご覧のとおり、データが変更された場合、ヒープをリセットして新しいデータを取得する必要があります (おっしゃる通り、IIS を再起動します)。

HttpCache (具体的には、HTTP キャッシングがデフォルトで使用する ObjectCache) は、データをヒープと同じ場所、つまりランダム アクセス メモリに格納します。したがって、ヒープ上のクラスまたはインスタンスに格納された静的データと同じくらい高速です。違いは、データが変更されたときに新しいデータを取得できるように、定期的に古くなるようにキャッシュを設定できることです。データベースの状態が変わるたびにキャッシュが古くなるように、SqlCacheDependencies を設定することもできます。

キャッシュのもう 1 つの利点は、サーバーの RAM リソースをより効率的に利用できることです。シングルトンでは、データが使用されていない場合でも、このデータは常にメモリを占有します。キャッシュを使用すると、サーバーは使用中のデータのみをメモリに格納します。キャッシュの欠点は、キャッシュの有効期限が切れた後にユーザーがデータを要求すると、時々、応答が遅くなることです。ただし、その後、他のユーザーはしばらくの間キャッシュされたデータの恩恵を受けることになります。

于 2012-12-21T13:16:12.633 に答える