This document discusses using MariaDB stored procedures and parallel processing to optimize the "Wordament" word game. It presents solutions to run the game using:
1) A single thread on one node.
2) Multiple threads on one node using MariaDB events.
3) Multiple threads across multiple nodes using MariaDB replication.
It concludes that MariaDB supports parallelism through events and replication, but could benefit from a thread API to more easily develop multithreaded stored procedure solutions.