Skip to content

Commit

Permalink
fix: updated README with auth notes (debasishg#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
zizzle6717 authored Sep 1, 2021
1 parent 7e83419 commit 6c0b4b6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,12 @@ new RedisCluster(nodes, Some(NoOpKeyTag)) with Reconnectable
```
you can observe it's behaviour in `ReconnectableSpec` test.

## Encryption/AUTH
For use with cloud services such as AWS Elasticache or GC Memory Store, notice a nuance when enabling encryption in transit. This will require both an AUTH password and sslContext when connecting. For example:
```
new RedisClient("your-aws-endpoint", 6379, sslContext = Some(SSLContext.getDefault()), secret = "your-auth-secret")
```

## License

This software is licensed under the Apache 2 license, quoted below.
Expand Down

0 comments on commit 6c0b4b6

Please sign in to comment.