class Tarantool::BlockDB::SpaceArray
Public Instance Methods
all_by_key(index_no, key, opts={})
click to toggle source
# File lib/tarantool/block_db.rb, line 155 def all_by_key(index_no, key, opts={}) all_by_key_cb(index_no, key, _block_cb, opts) end
all_by_keys(index_no, keys, opts={})
click to toggle source
# File lib/tarantool/block_db.rb, line 163 def all_by_keys(index_no, keys, opts={}) all_by_keys_cb(index_no, keys, _block_cb, opts) end
first_by_key(index_no, key)
click to toggle source
# File lib/tarantool/block_db.rb, line 159 def first_by_key(index_no, key) first_by_key_cb(index_no, key, _block_cb) end
select(index_no, keys, offset=0, limit=-1)
click to toggle source
# File lib/tarantool/block_db.rb, line 167 def select(index_no, keys, offset=0, limit=-1) select_cb(index_no, keys, offset, limit, _block_cb) end