This document summarizes the key aspects of building a game backend using F# and the actor model. It discusses how F# is well-suited for domain modeling and building correct systems. It then describes how to structure the backend using stateful workers as actors to manage player state. The workers use an optimistic concurrency approach with versions to handle get and update requests concurrently in an asynchronous and non-blocking way.