Commit Graph

430 Commits (0013177123f3b21627f5c7c0044acf3a7ca2bdeb)

Author SHA1 Message Date
Wilson Neto B.R. 137d275cf7
Add important notes on HybridCache limitations and behavior (#34224)
* Add important notes on HybridCache limitations and behavior

- Added a note indicating that removing cache entries by tag is still under development and is currently non-functional.

- Clarified that cache invalidation by key or tags affects only the current node and secondary storage, but not other nodes' in-memory cache.
2024-11-30 20:27:23 -08:00
Rick Anderson a6b09961fd
Update hybrid.md (#34185) 2024-11-19 15:36:32 -10:00
Rick Anderson 73d14c8ec1
Merge pull request #33937 from dalibormesaric/patch-1
Update memory.md
2024-11-06 13:51:39 -10:00
Marc Gravell 4553d60d4d
9.0 HybridCache; clarify release status (#34043) 2024-11-06 15:09:19 -08:00
tsemer db7227f46b
Make alternatives 3b (non-DI) and 3c (DI) functionally identical (#34022) 2024-11-05 10:21:13 -08:00
Tom Dykstra ff8edb9f4f
ROPC remediation - more files with connection strings (#33990) 2024-10-31 20:40:47 -07:00
Dalibor Mesarić 5c87004075
Update memory.md 2024-10-26 14:03:51 +02:00
Tom Dykstra a897a704a3
Update distributed6-7.md 2024-10-07 16:20:04 -07:00
Tom Dykstra 815450f518
Update distributed5.md 2024-10-07 16:17:57 -07:00
Rick Anderson 0c243ba6fc
ROPC caching (#33734)
* ROPC

* Update distributed.md

* Update distributed6-7.md

* Update distributed5.md

* Update aspnetcore/performance/caching/distributed.md

Co-authored-by: Wade Pickett <wpickett@microsoft.com>

---------

Co-authored-by: Wade Pickett <wpickett@microsoft.com>
2024-09-28 00:29:32 +00:00
Luke Latham 247e6f1526
Blazor cross-links (#33577) 2024-09-18 05:58:22 -04:00
Jaliya Udagedara 7ec16a64fa
Update code for SerializerFactory (#33449)
Use AddSerializerFactory instead of WithSerializerFactory
2024-08-27 17:11:54 -07:00
Tom Dykstra 9b4ae16def
Update hybrid.md, specify pkg version to install (#33358) 2024-08-14 09:11:29 -10:00
Tom Dykstra 28a78a82de
Preview 7 changes (#33340) 2024-08-13 14:46:00 -07:00
Tom Dykstra ec5a2043f5
Preview 6 updates to HybridCache (#33053) 2024-07-16 11:50:55 -07:00
Rick Anderson 187f7ae4a8
remove Postman (#33084)
* remove Postman

* remove Postman
2024-07-15 14:31:48 -10:00
Tom Dykstra 67b53080c2
Add controller examples to output caching doc (#32929) 2024-07-10 08:24:51 -07:00
Rick Anderson 44c10314dc
Revert "refactor azure troubleshooting/1 (#32888)" (#32927)
This reverts commit 3962f80932.
2024-06-24 16:22:50 -10:00
Tom Dykstra cad548e996
Note about code sample (#32913)
* noteaboutcodesample

* link to download how-to

* insert missing word
2024-06-20 13:12:56 -10:00
Rick Anderson 3962f80932
refactor azure troubleshooting/1 (#32888)
* refactor azure troubleshoooting

* worik

* worik

* worik

* worik

* worik
2024-06-18 15:04:45 -10:00
Tom Dykstra 3794ebf2fc
Reassign articles from Rick to Tom (#32852) 2024-06-14 09:04:26 -07:00
Tom Dykstra b7bdfb4a74
Add serialization sample app (#32681)
* draft

* proofread

* fix links

* save file that wasn't saved

* fix conn str name
2024-06-05 08:48:21 -10:00
AmirHossein 03939b6b3f
Update overview.md (#32718) 2024-06-01 05:53:34 -04:00
tuhlaajapoika 229da2b09b
Fix broken nginx link in response-compression.md (#32673) 2024-05-27 08:27:04 -04:00
Tom Dykstra d637cd5699
Document .NET 9 new feature - HybridCache (#32605)
* draft

* minor corrections

* fix links

* fix link

* toc

* Update hybrid.md

* Update hybrid.md

---------

Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
2024-05-20 12:04:31 -10:00
Tom Dykstra a6956d30a2
Moniker prep (#32556) 2024-05-09 11:16:34 -10:00
Tom Dykstra d7ee492d1f
Fix links (#32385) 2024-04-23 15:21:02 -07:00
Rick Anderson 4306dcf638
Merge pull request #32288 from tdykstra/currentlatest
Update not-latest and not-current include files
2024-04-09 16:26:42 -10:00
Tom Dykstra 6f5834d5ea
Set ms.author (#32279) 2024-04-09 15:18:55 -07:00
Tom Dykstra 0cb8cdd7d2 remove not-current, replace with not-latest 2024-04-09 14:54:15 -07:00
Wade Pickett 1192764b9c
Update API Testing tool references (#31966)
* Update references for API Testing

* Update aspnetcore/fundamentals/minimal-apis/bindingArrays/7.0-samples/todo/Program.cs

Co-authored-by: Tom Dykstra <tdykstra@microsoft.com>

---------

Co-authored-by: Tom Dykstra <tdykstra@microsoft.com>
2024-03-04 21:07:13 -08:00
Luke Latham ac67e4a063
Remove article front matter (#31944) 2024-03-01 06:00:21 -05:00
André R de3a5b9a03
Add CompressionLevel.SmallestSize and actual Gzip/Brotli compression levels (#31722)
* Document CompressionLevel.SmallestSize and actual Gzip/Brotli compression levels

Since [.Net 6](7d527c3368) there has been an additional option: `CompressionLevel.SmallestSize`. And since .Net 7 `Optimal` was [fixed](f281393412) to not mean smallest size anymore but rather a balanced value.

This change is also documents what these abstracted `CompressionLevel` values means for Gzip and Brotli compression libraries, given those are enabled by default. In my case I came to this page wanting to get an Idea of balancing CPU use vs size of the response, as there are plenty of pages online benchmarking zlib vs brotli at all possible levels and cpu types.

* Update aspnetcore/performance/response-compression.md

* Update aspnetcore/performance/response-compression.md

Co-authored-by: Tom Dykstra <tdykstra@microsoft.com>

* Update aspnetcore/performance/response-compression.md

---------

Co-authored-by: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com>
Co-authored-by: Tom Dykstra <tdykstra@microsoft.com>
2024-02-14 18:23:15 -10:00
learn-build-service-prod[bot] b6c720e77f
Metadata attributes driven by the AI Usage and Contributor Type taxonomies must be applied to content. (#31775)
Co-authored-by: Docs Allowlist Management <docs-allowlist-mgmt@microsoft.com>
2024-02-12 16:58:56 -10:00
Justin Fabricius 7b72c07c9d
Update example to use async scope (#31625) 2024-02-02 13:01:57 -05:00
Rick Anderson 84f50473d0
Update rate-limit.md (#31652)
* Update rate-limit.md

Fixes #31649

* Update rate-limit.md
2024-02-01 10:07:51 -10:00
Tom Dykstra 795a017fb9
add Azure Cosmos DB (#31607) 2024-01-30 08:09:04 -08:00
Rick Anderson 2dc10cb21b
Update rate-limit.md (#31507)
* Update rate-limit.md

* Update rate-limit.md

* Update rate-limit.md
2024-01-18 10:47:53 -10:00
mahdikshk fec7f53298
Minor typo in object pool documentations (#31387) 2024-01-09 08:58:16 -05:00
Luke Latham e261a60cb7
Remove duplicate words (#31298) 2023-12-24 06:34:39 -05:00
Rick Anderson 489d997fb2
Update timeouts.md (#31217) 2023-12-07 15:25:54 -10:00
Eric Erhardt 66967dd813
Fix up Redis Output Caching doc (#31027) 2023-11-14 11:06:13 -08:00
Tom Dykstra 6760a5aac2 clean up code 2023-11-07 14:07:12 -08:00
Tom Dykstra 661e2a52a1 clean up code 2023-11-07 14:05:11 -08:00
Tom Dykstra cda1654ec0 Dispose CTS in PostEvictionCallback 2023-11-07 13:56:45 -08:00
Tom Dykstra 9bc92f8e12 Dispose the CTS 2023-11-07 13:29:16 -08:00
Eric Mutta 7bd57ab3fd
Fix typo in ObjectPool.md (#30754) 2023-10-18 18:09:02 +00:00
sivaji55 43684f8774
fix: grammar mistake in rate limiting documentation (#30548)
Fixed grammar mistake in rate limiting documentation
2023-10-02 15:19:02 -10:00
Fiyaz Bin Hasan bf4a2e4c3a Azure Redis cache sample 2023-09-27 14:17:05 +06:00
Fiyaz Bin Hasan 21c476bd99 newline warnings 2023-09-27 13:32:12 +06:00