diff options
| author | ckrinitsin <101062646+ckrinitsin@users.noreply.github.com> | 2025-03-19 21:03:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-19 21:03:24 +0100 |
| commit | 858914c746c33d84d71d9b6b51c33f05502bba47 (patch) | |
| tree | f305d5fc4889edf4872b78f9b985b9a7f712146c /README.md | |
| parent | 166c93337c9c8233147e5fdf354932724f7c4470 (diff) | |
| download | BT-Programming-Assignment-858914c746c33d84d71d9b6b51c33f05502bba47.tar.gz BT-Programming-Assignment-858914c746c33d84d71d9b6b51c33f05502bba47.zip | |
Update README.md
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/README.md b/README.md index 4277594..61d664f 100644 --- a/README.md +++ b/README.md @@ -1 +1,22 @@ -# BT-Programming-Assignment \ No newline at end of file +# BT-Programming-Assignment + +## General instructions + +Languages: C/C++ +Initiate a github repository for each task +Provide the code accompanied with a Makefile to compile it as well as instructions on how to run your applications + +## Server/client application + +Task description: Implement the following two programs: + +Server: + Initializes a hash table of given size (provided via the command line) + Supports the insertion of items in the hash table + Hash table collisions are resolved by maintaining a linked list for each bucket/entry in the hash table + Supports concurrent operations (multithreading) to perform insert, get and delete operations on the hash table + Use readers-writer lock to ensure safety of concurrent operations; try to optimize the granularity + Communicates with the client program using shared memory buffer (POSIX shm) + +Client: + Enqueues requests/operations (insert, read, delete) to the server (that will operate on the the hash table) via a shared memory buffer (POSIX shm) |