Skip to content

Commit bdfa220

Browse files
Add images to EasyCaching article with Angular dashboard hero and Swagger screenshots
1 parent 607b7a8 commit bdfa220

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

blogs/series-2-dotnet-api/2.5-dotnet-easycaching.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
Your dashboard aggregates data from multiple tables on every load. Your employee list re-queries the database for every page view, even when nothing changed in the last five minutes. These patterns work fine with ten users — and collapse under real load. **EasyCaching** solves this with a clean, configuration-driven caching layer that plugs directly into your .NET Clean Architecture.
66

7+
![Application Dashboard](https://raw.githubusercontent.com/workcontrolgit/AngularNetTutorial/master/docs/images/angular/application-dashboard-anonymous.png)
8+
79
📖 **Tutorial Repository:** [AngularNetTutorial on GitHub](https://github.com/workcontrolgit/AngularNetTutorial)
810

911
---
@@ -208,6 +210,8 @@ public class CacheInvalidationEventHandler :
208210

209211
**Verify caching in browser DevTools:**
210212

213+
![Swagger Cache Resource Expanded](https://raw.githubusercontent.com/workcontrolgit/AngularNetTutorial/master/docs/images/webapi/swagger-cache-resource-expanded.png)
214+
211215
1. Open `https://localhost:44378/swagger` and authenticate with your Bearer token
212216
2. Call `GET /api/v1/employees` — inspect response headers in the Network tab
213217
3. Look for `X-Cache-Status: MISS` on the first call
@@ -231,6 +235,8 @@ Authorization: Bearer {hrAdminToken}
231235

232236
## 📊 Real-World Impact
233237

238+
![Swagger Employee Resource Expanded](https://raw.githubusercontent.com/workcontrolgit/AngularNetTutorial/master/docs/images/webapi/swagger-employee-resource-expanded.png)
239+
234240
**Before caching:**
235241

236242
* ❌ Every dashboard load runs a full aggregation query across all tables

0 commit comments

Comments
 (0)