Sha256: 8f6991d4c6df4372bd0c590374ade02ce945152d7aaee7ab658824070c90cb6a

Contents?: true

Size: 829 Bytes

Versions: 4

Compression:

Stored size: 829 Bytes

Contents

# HellaRedis

It's-a hella-redis!

## Usage

### Connection

```ruby
# config and create a connection
@config = {
  :timeout  => 1,
  :size     => 5,
  :redis_ns => 'hella-redis-test',
  :driver   => 'ruby',
  :url      => 'redis://localhost:6379/0'
}
@conn = HellaRedis::Connection.new(@config)

# it's actually a pool of connections
@conn.with do |conn|
  # get a connection and do something with it
end
```

## Installation

Add this line to your application's Gemfile:

    gem 'hella-redis'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install hella-redis

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
hella-redis-0.3.1 README.md
hella-redis-0.3.0 README.md
hella-redis-0.2.1 README.md
hella-redis-0.2.0 README.md