Skip to content

Commit 9c8695b

Browse files
DOC-4037 implemented PR feedback
1 parent c2e6628 commit 9c8695b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

content/develop/connect/clients/client-side-caching.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ can satisfy the read requests from the cache instead of the database:
3636
{{< image filename="images/csc/CSCWithCache.drawio.svg" >}}
3737

3838
Accessing the cache is much faster than communicating with the database over the
39-
network and it reduces network traffic. Client-side cacheing reduces
39+
network and it reduces network traffic. Client-side caching reduces
4040
the load on the database server, so you may be able to run it using less hardware
4141
resources.
4242

@@ -94,7 +94,7 @@ server activity if client-side caching is working correctly.
9494

9595
## What data gets cached for a command?
9696

97-
Broadly speaking, the data from the *specific response* to a command invocation
97+
Broadly speaking, the data from the specific response to a command invocation
9898
gets cached after it is used for the first time. Subsets of that data
9999
or values calculated from it are retrieved from the server as usual and
100100
then cached separately. For example:

content/develop/connect/clients/java/jedis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ public class Main {
198198

199199
## Connect using client-side caching
200200

201-
*Client-side caching* is a technique to reduce network traffic between
201+
Client-side caching is a technique to reduce network traffic between
202202
the client and server, resulting in better performance. See
203203
[Client-side caching introduction]({{< relref "/develop/connect/clients/client-side-caching" >}})
204204
for more information about how client-side caching works and how to use it effectively.

content/develop/connect/clients/python/redis-py.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ For more information, see [redis-py TLS examples](https://redis-py.readthedocs.i
121121

122122
## Connect using client-side caching
123123

124-
*Client-side caching* is a technique to reduce network traffic between
124+
Client-side caching is a technique to reduce network traffic between
125125
the client and server, resulting in better performance. See
126126
[Client-side caching introduction]({{< relref "/develop/connect/clients/client-side-caching" >}})
127127
for more information about how client-side caching works and how to use it effectively.
@@ -174,7 +174,7 @@ If you run the code again with `cache_config` uncommented, you will see
174174
1723110248.713607 [...] "GET" "city"
175175
```
176176

177-
This shows that the first `get("city")` call contacted the server but the second
177+
The first `get("city")` call contacted the server but the second
178178
call was satisfied by the cache.
179179

180180
### Removing items from the cache

0 commit comments

Comments
 (0)