Part one - a simple version #
This version will use whatever Java has to implement a useable in-memory data store.
The following data structures are supported:
- String (use byte[])
- List (use LinkedList)
- Hash (use HashMap)
- Set (use HashSet)
- Sorted Set (use TreeSet)
The server will be implemented with ServerSocket.
Update History #
- Chapter 1
- Command Reader (Updated 2023-01-27)
- Parse Command (Updated 2023-01-28)