Team Info:
193050040 Shreyansh Jain
193050049 Axel James
193050052 Bhaveshkumar Yadav

To compile the system run:
make

Instructions to execute :

1. Through make file

client: make runserver
server: make runclient

2. Manually

server: ./kvserver -port=8080 -threadPoolSize=5 -numSetsInCache=4 -sizeOfSet=2

client: ./kvclient batchRun.txt outputFile.txt -p

'-p' flag prints the received response from server in BatchMode


Input format :
1. For Batch Mode

PUT,<key>,<value>    OR
GET,<key>            OR
DEL,<key>
put,<key>,<value>    OR
get,<key>            OR
del,<key>

2. For Interactive Mode

Enter operation : GET/PUT/DEL

Now Enter Key,Value according to reqType
For GET : <key>
For PUT : <key> <value>
For DEL : <key>

