I know that OutputCache is not ready for ASP.NET Core, but I have read about OutputCache and you can configure it in the web.config like this:
<configuration>
<location path="showStockPrice.asp">
<system.webserver>
<caching>
<profiles>
<add varybyquerystring="*"location="Any"
duration="00:00:01" policy="CacheForTimePeriod"
extension=".asp">
</profiles>
</caching>
</system.webserver>
</location>
</configuration>
Can I confifure my web.config for using OutputCache Web.Config for MVC routes?
For example:
http://www.example.com/View/Index/123562
Where the varyByParam parameter is 123562.
Thanks.