@@ -34,7 +34,7 @@ You can also specify connection options as a [`redis://` URL][redis-url]:
3434redis
= Redis .
new (
url: " redis://:[email protected] :6380/15" )
3535```
3636
37- The client expects passwords with special chracters to be URL-encoded (i.e.
37+ The client expects passwords with special characters to be URL-encoded (i.e.
3838` CGI.escape(password) ` ).
3939
4040To connect to Redis listening on a Unix socket, try:
@@ -77,7 +77,7 @@ The client does not provide connection pooling. Each `Redis` instance
7777has one and only one connection to the server, and use of this connection
7878is protected by a mutex.
7979
80- As such it is heavilly recommended to use the [ ` connection_pool ` gem] ( https://github.com/mperham/connection_pool ) , e.g.:
80+ As such it is heavily recommended to use the [ ` connection_pool ` gem] ( https://github.com/mperham/connection_pool ) , e.g.:
8181
8282``` ruby
8383module MyApp
@@ -139,7 +139,7 @@ SENTINELS = [{ host: '127.0.0.1', port: 26380 },
139139redis = Redis .new (name: ' mymaster' , sentinels: SENTINELS , role: :master , password: ' mysecret' )
140140```
141141
142- So you have to provide Sentinel credential and Redis explictly even they are the same
142+ So you have to provide Sentinel credential and Redis explicitly even they are the same
143143
144144``` ruby
145145# Use 'mysecret' to authenticate against the mymaster instance and sentinel
@@ -406,7 +406,7 @@ gem "hiredis-client"
406406```
407407
408408If your application doesn't call ` Bundler.require ` , you may have
409- to require it explictly :
409+ to require it explicitly :
410410
411411``` ruby
412412require " hiredis-client"
0 commit comments