Skip to content

v1.0.0-Basic-Implementation-Release

Latest
Compare
Choose a tag to compare

NoSQL Simulation Implementation

v1.0.0

Features

  • Serves read and write requests successfully, while deleted and non existent keys return null
  • Stores key-value data into txt files as analogy to data files created using database.
  • Maintains a memTable (simple python dictionary rather than tree map) for size upto 1mb of Data and regularly flushes it to Sorted Set Tables.
  • Maintains proper WAL for write requests.
  • Proper reconstruction of memTable upon system restart.