Page 1 of 1

Can store settings cache be dumped?

Posted: Mon Nov 30, 2015 3:51 am
by AbleMods
I'm assuming AbleContext.Current.Store.Settings is cached, right?

Is there a way to dump it from cache and force a refresh from disk?

Re: Can store settings cache be dumped?

Posted: Tue Dec 01, 2015 1:20 am
by jmestep
I have had to do the following in the past

Code: Select all

 IStoreSettingsProvider provider = AbleContext.Resolve<IStoreSettingsProvider>();
            provider.Reload();

Re: Can store settings cache be dumped?

Posted: Tue Dec 01, 2015 2:06 am
by AbleMods
Perfect, thanks Judy !