Best Solution for Caching

后端 未结 9 684
走了就别回头了
走了就别回头了 2020-12-13 11:57

Where is the best place to implement caching in a web based app?

  • At the presentation layer (hope not)?
  • At the Business Logic Layer?
  • At the da
9条回答
  •  攒了一身酷
    2020-12-13 12:01

    Data layer. But it is confusing because we use ASP.NET caching. With its expiration and dependency capability, it's pretty handy. So our business layer has no idea the data layer might be caching but the data layer uses a presentation-layer technology for caching! :(

提交回复
热议问题