Files

Class/Module Index [+]

Quicksearch

Tarantool::FiberDB::SpaceHash

Public Instance Methods

all(keys, opts = {}) click to toggle source
# File lib/tarantool/fiber_db.rb, line 93
def all(keys, opts = {})
  all_cb(keys, ::Fiber.current, opts)
  _raise_or_return ::Fiber.yield
end
by_pk(key_array) click to toggle source
# File lib/tarantool/fiber_db.rb, line 88
def by_pk(key_array)
  by_pk_cb(key_array, ::Fiber.current)
  _raise_or_return ::Fiber.yield
end
first(key) click to toggle source
# File lib/tarantool/fiber_db.rb, line 98
def first(key)
  first_cb(key, ::Fiber.current)
  _raise_or_return ::Fiber.yield
end
select(keys, offset=0, limit=-1) click to toggle source
# File lib/tarantool/fiber_db.rb, line 103
def select(keys, offset=0, limit=-1)
  select_cb(keys, offset, limit, ::Fiber.current)
  _raise_or_return ::Fiber.yield
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.