You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple command-based in-memory key-value database built using Core Java.
Commands
PUT
GET
DELETE
EXIT
Example
PUT 1 hello
GET 1
→ hello
Concepts Used
Java OOP
Enums
HashMap
Command Parsing
Layered Design
About
A command-driven in-memory key-value database built using Core Java as a CLI application. Supports PUT, GET, DELETE, and EXIT commands with a custom parser, enum-based command handling, and layered design using controller, model, and DB classes. Demonstrates OOP, collections, and command processing.