• Stars
    star
    122
  • Rank 290,362 (Top 6 %)
  • Language
    C++
  • Created over 7 years ago
  • Updated over 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Coursework for Database System Concepts: A rough DBMS based on the Stanford CS346 RedBase project

rebaseDB

A rough DBMS based on the RedBase project from CS346

A simple database management system supporting:

  • Basic SQL commands
  • B+ tree-based indexing
  • Not-so-slow-but-not-too-fast-either query optimizer

See our (Chinese) documentation for more details.

On the RedBase framework: For details of the Redbase framework, please refer to CS346 RedBase Project Overview. For those wishing to implement their own DBMS using this framework, check out the initial branch.

Usage

  • Install dependencies: glog and gflags
  • Clone this repo
  • mkdir cmake-build && cd cmake-build (gather all the messy build files in one place)
  • cmake .. && make dbcreate && make redbase (build the binaries)
  • ./redbase

For supported SQL commands, also refer to our (Chinese) documentation.

References

See also: