You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: guides/getting-started/readme.md
+30-48
Original file line number
Diff line number
Diff line change
@@ -18,43 +18,21 @@ $ bundle add async-redis
18
18
require'async/redis'
19
19
20
20
Asyncdo
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
+
22
28
client =Async::Redis::Client.new(endpoint)
23
29
puts client.info
24
30
end
25
31
```
26
32
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:
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:
0 commit comments