Lol3rrr / http-server

A http-server written in c by myself
MIT License
1 stars 0 forks source link

Reduce shared memory #44

Closed Lol3rrr closed 4 years ago

Lol3rrr commented 4 years ago

Right now still a lot of memory is allocated in a shared way, to allow different processes to access the data. Since we now use threads instead of processes, it can now be moved back to normal allocated memory, which is easier to work with and most likely also faster.