https://github.com/misinformeddna/redis-rb-ssl
A plugin for the Redis gem to support SSL
https://github.com/misinformeddna/redis-rb-ssl
Last synced: 12 months ago
JSON representation
A plugin for the Redis gem to support SSL
- Host: GitHub
- URL: https://github.com/misinformeddna/redis-rb-ssl
- Owner: MisinformedDNA
- License: mit
- Created: 2015-05-13T14:27:40.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-13T15:07:23.000Z (about 11 years ago)
- Last Synced: 2025-03-25T23:23:38.456Z (over 1 year ago)
- Language: Ruby
- Size: 99.6 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#redis-ssl
A plugin for the [Redis gem](https://github.com/redis/redis-rb) to support SSL. Based off of [work by RedisLabs](https://github.com/RedisLabs/redis-rb/commit/a95affbca2bed4d0b7e6c7a3add135de07c8f720).
##Example
```ruby
$redis = Redis.new(
:host => '[ApplicationName].redis.cache.windows.net',
:port => 6380,
:password => '[Password]',
:use_ssl => true)
```