BayviewComputerClub / smoothie-web

Bayview Computer Club's Online Judge!
https://smoothie.bayview.club
GNU Affero General Public License v3.0
4 stars 0 forks source link

Use deltas for contest objects #50

Open espidev opened 3 years ago

espidev commented 3 years ago

Contest objects are currently processed by fetching the object, changing it, and then saving it back to the database. This has the chance for a rare possibility of two simultaneous requests overriding the data stored by another. Contest objects should instead store a delta, and when it is saved, apply the delta on to the fetched database version instead.