File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,10 @@ generate and return the value::
90
90
Use cache tags to delete more than one key at the time. Read more at
91
91
:doc: `/components/cache/cache_invalidation `.
92
92
93
- The Cache Contracts also comes with built in `Stampede prevention `_. This will
93
+ Stampede Prevention
94
+ ~~~~~~~~~~~~~~~~~~~
95
+
96
+ The Cache Contracts also come with built in `Stampede prevention `_. This will
94
97
remove CPU spikes at the moments when the cache is cold. If an example application
95
98
spends 5 seconds to compute data that is cached for 1 hour and this data is accessed
96
99
10 times every second, this means that you mostly have cache hits and everything
Original file line number Diff line number Diff line change @@ -2431,7 +2431,7 @@ use the ``generateUrl()`` helper::
2431
2431
2432
2432
While objects are converted to string when used as placeholders, they are not
2433
2433
converted when used as extra parameters. So, if you're passing an object (e.g. an Uuid)
2434
- as value of an extra parameter, you need to explictly convert it to a string::
2434
+ as value of an extra parameter, you need to explicitly convert it to a string::
2435
2435
2436
2436
$this->generateUrl('blog', ['uuid' => (string) $entity->getUuid()]);
2437
2437
You can’t perform that action at this time.
0 commit comments