robert
Up one levelBereich von robert, der dessen persönliche Artikel enthält.
Artikel über ERP5
http://www.erp5.org/sections/screenshot/warehouse_management/view Erp5 ist ein Plone basiertes erp system
Implementing a Pattern Library in the Real World: A Yahoo! Case Study
Our Problem Yahoo’s multiple business units, each containing decentralized user experience teams, have a natural tendency to design different solutions to similar problems. Left unchecked, these differences would weaken the Yahoo! brand and produce a less usable network of products. Designers and managers have discussed “standards” as a way to solve this problem but this standards content (often contained only in the memories of designers) has never existed in a commonly accessible format.
Scaling Zope
a collection of links by paul winkler Jeronimo Zucco wrote at 2005-9-16 15:09 -0300: >> ... >>The python processes occupied 100% of machines resources (cpu and >>memory), and the load average increased quickly. We evidenced that the >>problems had occurred before user authentication, only trying access the >>initial page of the Zope portal. Use a profiler (e.g. my "ZopeProfiler") to find out where the time is spent. Optimize the hotspots. Furthermore, carefully check what pages, part of pages or page resources (such as database query results) can be cached. Use caching as agressive as possible. Zope supports caching in many ways: * setting HTTP cache headers such that an external cache (SQUID, Apache, ...) can intelligently cache pages --> HTTPCacheManager, "caching_policy_manager" * caching parts of pages via the RAMCacheManager * caching the result of relational database queries * more caching types can be supported in your own products.