Skip to content

Commit c23c641

Browse files
Apply suggestions from code review
1 parent fb0ef9f commit c23c641

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

help/implementation-playbook/best-practices/planning/redis-service-configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ lazyfree-lazy-user-del yes
282282
When lazyfree is enabled, Redis offloads memory reclamation to background threads for evictions, expirations, server-initiated deletes, user deletes, and replica dataset flushes. This reduces main-thread blocking and can lower request latency.
283283
>[!NOTE]
284284
>
285-
>`lazyfree-lazy-user-del yes` makes the `DEL` command behave like `UNLINK`, i.e., it unlinks keys immediately and frees their memory asynchronously.
285+
>The `lazyfree-lazy-user-del yes` option makes the `DEL` command behave like `UNLINK`, which unlinks keys immediately and frees their memory asynchronously.
286286
287287
>[!WARNING]
288288
>
@@ -316,7 +316,7 @@ stage:
316316
read_timeout: 10
317317
connect_retries: 5
318318
````
319-
These settings increase client tolerance to brief congestion on Redis by extending the reply wait window and retrying connection setup. This can reduce intermittent cannot connect to localhost:6370 and read-timeout errors during short spikes.
319+
These settings increase client tolerance to brief congestion on Redis by extending the reply wait window and retrying connection setup. This can reduce intermittent `cannot connect to localhost:6370` and read-timeout errors during short spikes.
320320
>[!NOTE]
321321
>
322322
>They are not a fix for persistent overload.

0 commit comments

Comments
 (0)