franklindyer / agora-app

Simple and (hopefully) secure social media application. Also a project for spring 2024 CS 444 cybersecurity class at UNM.
4 stars 1 forks source link

Database improvements #35

Closed franklindyer closed 6 months ago

franklindyer commented 6 months ago

Fixes #3

Now all RO queries to the database pass through a threadpool with 10 members (we can increase or parametrize later as needed), and all RW queries pass through a single-thread pool for synchronization.

altheaden commented 6 months ago

Looks great.