the consensus for web dev / webapps is being "stateless" (all state resides in external dbs). meanwhile, "agentic" frameworks are very very stateful, with graphs of mutable objects spawning each other. are there established best-practices for scalabely deploying these to web?
Comments
The other extreme is single-tenant infra where you have an instance per customer and then do some orchestration of turning them on/off/persist state.