Comment Re:dont have any expectations... (Score 1) 229
ZODB supports a client-server configuration. In that configuration, all of the CPU intensive work gets done on the clients. A single server can support a fairly high number of clients. It has an invalidation-based consistency model that allows clients to cache most of the data they read.
It's actually unlikely that the scalability limit you hit is with ZODB. In high-load Zope environment, you're more likely to hit a limit on the front-end. Generating dynamic content in Python can be fairly slow.
It's actually unlikely that the scalability limit you hit is with ZODB. In high-load Zope environment, you're more likely to hit a limit on the front-end. Generating dynamic content in Python can be fairly slow.