An Aerospike library for Ruby.
This library is compatible with Ruby 2.3+ and supports Linux, Mac OS X and various other BSDs.
The following is a very simple example of CRUD operations in an Aerospike database.
require 'rubygems'
require 'aerospike'
include Aerospike
client = Client.new("127.0.0.1")
key = Key.new('test', 'test', 'key value')
bin_map = {
'bin1' => 'value1',
'bin2' => 2,
'bin4' => ['value4', {'map1' => 'map val'}],
'bin5' => {'value5' => [124, "string value"]},
}
client.put(key, bin_map)
record = client.get(key)
record.bins['bin1'] = 'other value'
client.put(key, record.bins)
record = client.get(key)
puts record.bins
client.delete(key)
puts client.exists(key)
client.close
More examples illustrating the use of the API are located in the
examples
directory.
Details about the API are available in the docs
directory.
Ruby version v2.3+ is required.
Aerospike Ruby client implements the wire protocol, and does not depend on the C client. It is thread friendly.
Supported operating systems:
- Major Linux distributions (Ubuntu, Debian, Redhat)
- Mac OS X
- other BSDs (untested)
- gem install aerospike
- Install Ruby 2.3+
- Install RubyGems
- Install Bundler:
gem install bundler
- Install dependencies:
bundler install
- Build and Install the gem locally:
rake build && rake install
- Run the benchmark:
./tools/benchmark/benchmark.rb -u
This library is packaged with a number of tests.
To run all the test cases:
$ AEROSPIKE_HOSTS="<host:port>[,<host:port>]" AEROSPIKE_USER="<user>" AEROSPIKE_PASSWORD="<pass>" bundle exec rspec
A variety of example applications are provided in the examples
directory.
A variety of clones of original tools are provided in the tools
directory.
They show how to use more advanced features of the library to reimplement the same functionality in a more concise way.
Benchmark utility is provided in the tools/benchmark
directory.
See the tools/benchmark/README.md
for details.
API documentation is available in the docs
directory.
The Aerospike Ruby Client is made available under the terms of the Apache License, Version 2, as stated in the file LICENSE
.
Individual files may be made available under their own specific license, all compatible with Apache License, Version 2. Please see individual files for details.