What is the maximum number of sites in Plone 4.1

I would like to know how many sites / virtual hosts are allowed in one Plone installation. I am currently using the zeocluster installation. I am interested in the theoretical maximum, that is, infinite equipment, bandwidth, etc.

+4
source share
2 answers

There is no theoretical limit to Plone instances in one Zope instance. As its name implies, Zope is an environment for publishing objects, and from the point of view of Zope, the Plone site is nothing more than an object, like any other.

+3
source

If none of them are available, I guess you can as many as you like. If they are accessed, then your limitations are memory and processor. We typically deploy multi-user deployments with separate settings for each site, which means that for each site there is a separate cache architect. This means that each site uses more RAM for each instance of zope, but since it is infinite, this is not a problem for you. The CPU starts the game if they are often accessed. More requests require more cores to avoid lagging requests. The third aspect is the database. After all, if you record on these sites often enough, you will make the most of your zodb connection. This is not easy to do, since zodb requests are easy. However, if you did this, then you can work around this using relstorage and have replication.

+3
source

All Articles