Sha256: 485504d2c203595c500ccca492d08bbbaf83bd8e3ca93f15d830a50d895af107
Contents?: true
Size: 1.44 KB
Versions: 4
Compression:
Stored size: 1.44 KB
Contents
# Oxblood [![Gem Version](https://badge.fury.io/rb/oxblood.svg)](https://badge.fury.io/rb/oxblood) [![Code Climate](https://codeclimate.com/github/etehtsea/oxblood/badges/gpa.svg)](https://codeclimate.com/github/etehtsea/oxblood) [![Test Coverage](https://codeclimate.com/github/etehtsea/oxblood/badges/coverage.svg)](https://codeclimate.com/github/etehtsea/oxblood/coverage) [![Issue Count](https://codeclimate.com/github/etehtsea/oxblood/badges/issue_count.svg)](https://codeclimate.com/github/etehtsea/oxblood) An experimental Redis Ruby client. ## Usage ### Standalone ```ruby require 'oxblood' pool = Oxblood::Pool.new(size: 8) pool.with { |c| c.ping } ``` ### As [redis-rb](https://github.com/redis/redis-rb) driver ```ruby [1] pry(main)> require 'redis/connection/oxblood' => true [2] pry(main)> require 'redis' => true # For implicit usage connection should be required before redis gem [3] pry(main)> Redis.new.client.options[:driver] => Redis::Connection::Oxblood # Explicitly [4] pry(main)> Redis.new(driver: :oxblood).client.options[:driver] => Redis::Connection::Oxblood ``` ## Continuous Integration [![Build Status](https://travis-ci.org/etehtsea/oxblood.svg?branch=master)](https://travis-ci.org/etehtsea/oxblood) ## Contributing Bug reports and pull requests are welcome on [GitHub](https://github.com/etehtsea/oxblood). ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
oxblood-0.1.0.dev5 | README.md |
oxblood-0.1.0.dev4 | README.md |
oxblood-0.1.0.dev3 | README.md |
oxblood-0.1.0.dev2 | README.md |