An open API service indexing awesome lists of open source software.

https://github.com/naren-jha/inmemorydbapp

Implementation of an in-memory SQL-like database which can be used by multiple services
https://github.com/naren-jha/inmemorydbapp

cache-storage database-design inmemory-db spring-boot

Last synced: about 2 months ago
JSON representation

Implementation of an in-memory SQL-like database which can be used by multiple services

Awesome Lists containing this project

README

          

# InMemoryDbApp

## Problem Statement

The objective is to design and implement an in-memory SQL-like database, which should support the following set of operations / functionality:

* It should be possible to create or delete tables in a database. : deletion is optional
* A table definition comprises columns which have types. They can also have constraints
* The supported column types are string and int.
* The string type can have a maximum length of 20 characters.
* The int type can have a minimum value of -1024 and a maximum value of 1024.
* User can also define constraints on data type on top of the system constraints
* Support for mandatory fields (tagging a column as required)
* It should be possible to insert records in a table.
* It should be possible to print all records in a table.
* It should be possible to filter and display records whose column values match a given value. - optional