Reputation: 428
CPU(s): 4 core
Thread(s) per core: 1
Sockets(s): 1
Upvotes: -2
Views: 193
Reputation: 671
Python, due to its GIL, can only use one processor. Plone can run on multiple processors by using ZEO as a centralized database and running multiple Zope processes. You'll need to also install some sort of load balancer, to redirect traffic to those processes: nginx, varnish or haproxy can do that for you.
Upvotes: 5