Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 307 Bytes

File metadata and controls

23 lines (17 loc) · 307 Bytes

Java CLI Memo Database

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