Skip to content

Commit 0188a35

Browse files
Merge branch 'DOC-5064-jedis-prod-usage' of github.com:redis/docs into DOC-5064-jedis-prod-usage
2 parents 1a36cd4 + 55dbd02 commit 0188a35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/develop/clients/jedis/produsage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ to learn how to use this technique with Jedis.
5757

5858
[Client-side caching]({{< relref "/develop/clients/client-side-caching" >}})
5959
involves storing the results from read-only commands in a local cache. If the
60-
same command is executed again later, the result can be obtained from the cache,
60+
same command is executed again later, the results can be obtained from the cache,
6161
without contacting the server. This improves command execution time on the client,
6262
while also reducing network traffic and server load. See
6363
[Connect using client-side caching]({{< relref "/develop/clients/jedis/connect#connect-using-client-side-caching" >}})
@@ -129,7 +129,7 @@ inactivity.
129129

130130
Redis handles many errors using return values from commands, but there
131131
are also situations where exceptions can be thrown. In production code,
132-
you should handle
132+
you should handle exceptions as they occur.
133133

134134
The Jedis exception hierarchy is rooted on `JedisException`, which implements
135135
`RuntimeException`. All exceptions in the hierarchy are therefore unchecked

0 commit comments

Comments
 (0)