I am writing a database model that uses the data structure of a B + tree. I know how to implement this structure in Java using only RAM. But I need to write data to disk (every time I write, modify or delete)
How can I implement this structure?
source
share