Skip to content

Commit

Permalink
implement CancellationToken
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeeLyn committed Oct 9, 2023
1 parent 4eed4d6 commit f0a2649
Show file tree
Hide file tree
Showing 4 changed files with 534 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,9 @@ public async Task<IActionResult> Get()

---

### **_NOTE_**
### **_WARNING_**

**_If the cache does not exist, it adds a lock when reading data from the database to prevent cache breakdown. Dapper.Extensions is just a low-level data access library. Preventing malicious attacks is not its responsibility. You can add Bloom filters before this._**
**_If the cache does not exist, it adds a lock when reading data from the database to prevent cache breakdown.If the lock cannot be acquired, a DapperCacheException will be thrown, which needs to be caught in your business code. At this time, you need to consider the issues of Cache Penetration and Cache Breakdown and Cache Avalanche. Dapper.Extensions is just a low-level data access library. Preventing malicious attacks is not its responsibility. You can add Bloom filters before this._**

---

Expand Down
Loading

0 comments on commit f0a2649

Please sign in to comment.