- Mastering ASP.NET Web API
- Mithun Pattankar Malendra Hurbuns
- 91字
- 2021-07-02 20:52:22
Cache
Caching is the next constraint. Whenever the server transmits data that will not change, we refer to the data as static data. The server can cache the data.
When the very first request is made, the server will make a trip to the database in order to fetch the data. This data should then be cached as an application layer. Every subsequent request for that data will be fetched from the cache, saving the server a request to the database, resulting in the response being returned to the client faster.
推薦閱讀
- Python科學計算(第2版)
- PyTorch自動駕駛視覺感知算法實戰
- Reactive Programming with Swift
- Web交互界面設計與制作(微課版)
- Mastering matplotlib
- 表哥的Access入門:以Excel視角快速學習數據庫開發(第2版)
- Visual C#通用范例開發金典
- PHP從入門到精通(第4版)(軟件開發視頻大講堂)
- HTML5秘籍(第2版)
- 輕松上手2D游戲開發:Unity入門
- Spring Boot+MVC實戰指南
- Java Web從入門到精通(第2版)
- 跟戴銘學iOS編程:理順核心知識點
- 軟件定義存儲:原理、實踐與生態
- TensorFlow+Keras深度學習算法原理與編程實戰