I would like to know whether I should use a process per instance or whether I should run multiple instances in a single process using AppDomains.
I have a server application which follows a design kind of like telnet. The user is always connected over TCP and the server keeps a full state of the client session which is presented on the workstation.
The software will need to support up to at least 500 concurrent connections, probably more. A typical installation will require somewhere between 3 and 7 instances of the application to be running continuously, although all but one instance will have just a few connections (they are for testing, reference environments, etc). In house, for development purposes, there will be a maximum of 40 environments with a maximum of 20 concurrent connections per environment. My target host environment will be 64bit Windows.
I know that IIS uses a model where it has just one process and multiple AppDomains, but I can also see advantages in having a process per instance.
Which should I use and why?
EDIT:
The different instances concern different versions of the same application which cannot be run in a single AppDomain together. Also, the different instances do not have to communicate with each other, only with a master service for management purposes.