Skip to content

Commit 6655efe

Browse files
committed
Improve documentation to take advantage of Async::Redis::Endpoint.
1 parent dc65f34 commit 6655efe

File tree

1 file changed

+30
-48
lines changed

1 file changed

+30
-48
lines changed

guides/getting-started/readme.md

+30-48
Original file line numberDiff line numberDiff line change
@@ -18,43 +18,21 @@ $ bundle add async-redis
1818
require 'async/redis'
1919

2020
Async do
21-
endpoint = Async::Redis.local_endpoint
21+
endpoint = Async::Redis.local_endpoint(
22+
# Optional database index:
23+
database: 1,
24+
# Optional credentials:
25+
credentials: ["username", "password"]
26+
)
27+
2228
client = Async::Redis::Client.new(endpoint)
2329
puts client.info
2430
end
2531
```
2632

27-
### Authenticated Protocol
28-
29-
In order to authenticate, it is necessary to issue an `AUTH` command after connecting to the server. The `Async::Redis::Protocol::Authenticated` protocol class does this for you:
30-
31-
``` ruby
32-
require 'async/redis'
33-
require 'async/redis/protocol/authenticated'
34-
35-
Async do
36-
endpoint = Async::Redis.local_endpoint
37-
protocol = Async::Redis::Protocol::Authenticated.new(["username", "password"])
38-
client = Async::Redis::Client.new(endpoint, protocol: protocol)
39-
puts client.info
40-
end
41-
```
42-
43-
### Selected Database
33+
You can also encode this information in a URL:
4434

45-
In order to select a database, it is necessary to issue a `SELECT` command after connecting to the server. The `Async::Redis::Protocol::Selected` protocol class does this for you:
4635

47-
``` ruby
48-
require 'async/redis'
49-
require 'async/redis/protocol/selected'
50-
51-
Async do
52-
endpoint = Async::Redis.local_endpoint
53-
protocol = Async::Redis::Protocol::Selected.new(1)
54-
client = Async::Redis::Client.new(endpoint, protocol: protocol)
55-
puts client.client_info
56-
end
57-
```
5836

5937
### Connecting to Redis SSL Endpoint
6038

@@ -63,28 +41,32 @@ This example demonstrates parsing an environment variable with a `redis://` or S
6341
``` ruby
6442
require 'async/redis'
6543

66-
def make_redis_endpoint(uri)
67-
tcp_endpoint = ::IO::Endpoint.tcp(uri.hostname, uri.port)
68-
case uri.scheme
69-
when 'redis'
70-
tcp_endpoint
71-
when 'rediss'
72-
ssl_context = OpenSSL::SSL::SSLContext.new
73-
ssl_context.set_params(
74-
ca_file: "/path/to/ca.crt",
75-
cert: OpenSSL::X509::Certificate.new(File.read("client.crt")),
76-
key: OpenSSL::PKey::RSA.new(File.read("client.key")),
77-
)
78-
::IO::SSLEndpoint.new(tcp_endpoint, ssl_context: ssl_context)
79-
else
80-
raise ArgumentError
44+
ssl_context = OpenSSL::SSL::SSLContext.new.tap do |context|
45+
# Load the certificate store:
46+
context.cert_store = OpenSSL::X509::Store.new.tap do |store|
47+
store.add_file(Rails.root.join("config/redis.pem").to_s)
8148
end
49+
50+
# Load the certificate:
51+
context.cert = OpenSSL::X509::Certificate.new(File.read(
52+
Rails.root.join("config/redis.crt")
53+
))
54+
55+
# Load the private key:
56+
context.key = OpenSSL::PKey::RSA.new(
57+
Rails.application.credentials.services.redis.private_key
58+
)
59+
60+
# Ensure the connection is verified according to the above certificates:
61+
context.verify_mode = OpenSSL::SSL::VERIFY_PEER
8262
end
8363

84-
endpoint = make_redis_endpoint(URI(ENV['REDIS_URL']))
64+
# e.g. REDIS_URL=rediss://:[email protected]:12345
65+
endpoint = Async::Redis::Endpoint.parse(ENV["REDIS_URL"], ssl_context: ssl_context)
8566
client = Async::Redis::Client.new(endpoint)
86-
87-
# ...
67+
Sync do
68+
puts client.call("PING")
69+
end
8870
```
8971

9072
### Variables

0 commit comments

Comments
 (0)