Skip to content

Commit

Permalink
[CLIENT-3055] Remove Unsupported Server Features (Predexp and BatchDi…
Browse files Browse the repository at this point in the history
…rect)
  • Loading branch information
khaf committed Jul 24, 2024
1 parent b9c8544 commit 6075979
Show file tree
Hide file tree
Showing 33 changed files with 251 additions and 2,117 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ group :development do
gem "rubocop-rspec", require: false
end

gem "base64"
gem "bcrypt"
gem "msgpack", "~> 1.2"
gem "rake"
Expand Down
22 changes: 13 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,18 @@ An Aerospike library for Ruby.

This library is compatible with Ruby 2.3+ and supports Linux, Mac OS X and various other BSDs.

- [Usage](#Usage)
- [Prerequisites](#Prerequisites)
- [Installation](#Installation)
- [Benchmarks](#Benchmarks)
- [API Documentaion](#API-Documentation)
- [Tests](#Tests)
- [Examples](#Examples)
- [Tools](#Tools)
- [Aerospike Ruby Client ](#aerospike-ruby-client---)
- [Usage:](#usage)
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Installation from Ruby gems](#installation-from-ruby-gems)
- [Installation from source](#installation-from-source)
- [Tests](#tests)
- [Examples](#examples)
- [Tools](#tools)
- [Benchmarks](#benchmarks)
- [API Documentation](#api-documentation)
- [License](#license)


## Usage:
Expand Down Expand Up @@ -97,7 +101,7 @@ This library is packaged with a number of tests.

To run all the test cases:

$ AEROSPIKE_HOSTS="<host:port>[,<hoist:port>]" AEROSPIKE_USER="<user>" AEROSPIKE_PASSWORD="<pass>" bundle exec rspec
$ AEROSPIKE_HOSTS="<host:port>[,<host:port>]" AEROSPIKE_USER="<user>" AEROSPIKE_PASSWORD="<pass>" bundle exec rspec

<a name="Examples"></a>
## Examples
Expand Down
206 changes: 0 additions & 206 deletions examples/pred_exp.rb

This file was deleted.

12 changes: 0 additions & 12 deletions lib/aerospike.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
require "aerospike/value/particle_type"
require "aerospike/value/value"
require "aerospike/command/single_command"
require "aerospike/command/batch_direct_node"
require "aerospike/command/batch_index_node"
require "aerospike/command/field_type"
require "aerospike/command/command"
Expand All @@ -53,8 +52,6 @@
require "aerospike/command/operate_command"
require "aerospike/command/exists_command"
require "aerospike/command/multi_command"
require "aerospike/command/batch_direct_command"
require "aerospike/command/batch_direct_exists_command"
require "aerospike/command/batch_index_command"
require "aerospike/command/batch_index_exists_command"
require "aerospike/command/read_header_command"
Expand Down Expand Up @@ -160,7 +157,6 @@
require "aerospike/query/query_command"
require "aerospike/query/scan_command"
require "aerospike/query/statement"
require "aerospike/query/pred_exp"
require "aerospike/query/partition_tracker"
require "aerospike/query/partition_status"
require "aerospike/query/partition_filter"
Expand All @@ -178,14 +174,6 @@
require "aerospike/exp/exp_hll"
require "aerospike/exp/operation"

require "aerospike/query/pred_exp/and_or"
require "aerospike/query/pred_exp/geo_json_value"
require "aerospike/query/pred_exp/integer_value"
require "aerospike/query/pred_exp/op"
require "aerospike/query/pred_exp/regex"
require "aerospike/query/pred_exp/regex_flags"
require "aerospike/query/pred_exp/string_value"

module Aerospike
extend Loggable
end
Loading

0 comments on commit 6075979

Please sign in to comment.