Aim is to make progress on building a fast (ish) time-series database from scratch, in C++.
- Joe Murdoch
- Perry Hui
- Kamai Jackson-Wade
- Alex Do (mentor)
You need to have bazel installed to build the project.
Then, to check everything is in order:
bazel build //src/...When developing in general, you should endeavour to minimise the amount of code you write, and write tests to demonstrate that what you have written works.
See in storage/structures/btree for an example test built with GTEST, the google test suite.
Regenerate with:
bazel run @hedron_compile_commands//:refresh_all