Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 1023 Bytes

README.md

File metadata and controls

32 lines (19 loc) · 1023 Bytes

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: