Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 1.02 KB

README.md

File metadata and controls

35 lines (23 loc) · 1.02 KB

Introduction

This gem describes the Aerospike Ruby Client API in detail.

Usage

The aerospike ruby client package is the main entry point to the client API.

require 'rubygems'
require 'aerospike'

Before connecting to a cluster, you must import the package.

You can then generate a client object for connecting to and operating against a cluster.

client = Aeropsike::Client.new("127.0.0.1", 3000)

The application will use the client object to connect to a cluster, then perform operations such as writing and reading records. Client object is thread frinedly, so you can use it in other threads without synchronization. It manages its connections and internal state automatically for optimal performance. These settings can also be tweaked.

For more details on client operations, see Client Class.

API Reference