Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. public class StockQuoteController : SitecoreController {
  2. private IStockQuoteAgent _stockQuoteAgent;
  3.  
  4. public StockQuoteController(IStockQuoteAgent stockQuoteAgent) {
  5. _stockQuoteAgent = stockQuoteAgent;
  6. }
  7.  
  8. [OutputCache(CacheProfile = "StockQuoteCacheProfile")]
  9. [HttpPost]
  10. public JsonResult GetStockPrice() {
  11. ...
  12. }
  13. }
  14.  
  15. <caching>
  16. <outputCache enableOutputCache="true" enableFragmentCache="true" sendCacheControlHeader="true" omitVaryStar="false"></outputCache>
  17. <outputCacheSettings>
  18. <outputCacheProfiles>
  19. <add name="StockQuoteCacheProfile" duration="1800" varyByParam="none" location="ServerAndClient" />
  20. </outputCacheProfiles>
  21. </outputCacheSettings>
  22. </caching>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement