Files

Class/Module Index [+]

Quicksearch

Tarantool::FiberDB::SpaceArray

Public Instance Methods

all_by_key(index_no, key, opts={}) click to toggle source
# File lib/tarantool/fiber_db.rb, line 64
def all_by_key(index_no, key, opts={})
  all_by_key_cb(index_no, key, ::Fiber.current, opts)
  _raise_or_return ::Fiber.yield
end
all_by_keys(index_no, key, opts={}) click to toggle source
# File lib/tarantool/fiber_db.rb, line 74
def all_by_keys(index_no, key, opts={})
  all_by_keys_cb(index_no, key, ::Fiber.current, opts)
  _raise_or_return ::Fiber.yield
end
first_by_key(index_no, key) click to toggle source
# File lib/tarantool/fiber_db.rb, line 69
def first_by_key(index_no, key)
  first_by_key_cb(index_no, key, ::Fiber.current)
  _raise_or_return ::Fiber.yield
end
select(index_no, keys, offset=0, limit=-1) click to toggle source
# File lib/tarantool/fiber_db.rb, line 79
def select(index_no, keys, offset=0, limit=-1)
  select_cb(index_no, keys, offset, limit, ::Fiber.current)
  _raise_or_return ::Fiber.yield
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.