Skip to content

Commit ae9d5a3

Browse files
committed
minor #13858 Add missing dot at the end of a sentence (jdreesen)
This PR was merged into the 4.4 branch. Discussion ---------- Add missing dot at the end of a sentence <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- 3ea5c00 Add missing dot at the end of a sentence
2 parents 60ebbd7 + 3ea5c00 commit ae9d5a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/cache.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ spends 5 seconds to compute data that is cached for 1 hour and this data is acce
9797
is fine. But after 1 hour, we get 10 new requests to a cold cache. So the data
9898
is computed again. The next second the same thing happens. So the data is computed
9999
about 50 times before the cache is warm again. This is where you need stampede
100-
prevention
100+
prevention.
101101

102102
The first solution is to use locking: only allow one PHP process (on a per-host basis)
103103
to compute a specific key at a time. Locking is built-in by default, so

0 commit comments

Comments
 (0)