How can I do block-oriented disk I/O with Java? Or similar for a B+ tree
- by Sanoj
I would like to implement an B+ tree in Java and try to optimize it for disk based I/O. Is there an API for accessing individual disk blocks from Java? or is there an API that can do similar block-oriented access that fits my purpose?
I would like to create something like Tokyo Cabinet in 100% Java. Is there anyone that knows what Java only databases like JavaDB is using in the back-end for this?
I know that there are probably other languages than Java that can do this better, but I do this in a learning purpose only.