Method: FDB::TransactionRead#get

Defined in:
lib/fdbimpl.rb

#get(key) ⇒ Object Also known as: []



718
719
720
721
# File 'lib/fdbimpl.rb', line 718

def get(key)
  key = FDB.key_to_bytes(key)
  Value.new(FDBC.fdb_transaction_get(@tpointer, key, key.bytesize, @is_snapshot))
end