Since we announced that TokuDB is now open source, there has been a lot of positive feedback (thanks!) and also some questions about the details. I want to take this opportunity to give a quick high level guide to describe what our repositories on Github are.
Here are the repositories:
-
ft-index. This repository is the “magic”. It contains
the Fractal Tree data structures we have been talking about for
years. This is also the main piece that was previously closed
source. Here are some interesting directories:
- src: This directory is a layer that implements an API that is similar to the BDB API.
- locktree: an in-memory data structure that maintains transactions’ row-level locks. …