Can anyone please help me to Get Cacheexpiry time from appsettings in .NET core Application I have created a seperate class to handle caching , here i have written one method and everytime instead of calling database for credentials im just checking cache entry from this method . So here i just need to get cache time appsettings (Config file).
var cacheEntry = new MemoryCacheEntryOptions() .SetSlidingExpiration(here i need to get from config);
What all are the files i have to add code like getting value using get set and registering in startup. Im very much new to .Net core architecture.
Im using INmemoryCache
If you have a section in your config file, such as
Then what you would do in your ConfigureServices method is to make sure you call
services.AddMemoryCache();
within it.Example
Then, in a service, you can read the values.
You can only read from appsettings.
If you want to change how the in-memory cache works, maybe storing the settings in a database or in a text file would be better.
For example when the application starts it reads from appsettings and then you have some logic that looks into another source for values.
This would mean that every other instantiation of the service would read the settings from another place other than appsettings.