Scalability is an important aspect of a web server which must be taken seriously. I'll try to explain in detail.     An atomic uniGUI app containing a single MainForm only consumes a few KB of memory per session. As developer adds new components to Form and datamodules per-session memory usage starts to increase. uniGUI apps are fully stateful. Each session stays in server memory space as long as that session is active. Once that session is terminated the memory is returned to server memory
    • Upvote
    1