Asynchronous Database | This update features internal changes to how the database if used, is accessed. Up until now actions such as retrieving scores and uploading scores was done synchronous which resulted in actually holding up the main thread which is a big no-no. (We're talking milliseconds so you wouldn't really notice it)
In this update, all database access is asynchronous as you'd expect database access to be. This means that a lot of internal stuff has been restructured and refactored to accommodate these architectural changes.
I strongly encourage updating as your entire server performance will benefit from this update.
The changes made are pretty comprehensive. If any issues occur please let me know and I'll take a look at it.