Book Image

Plone 3.3 Site Administration

Book Image

Plone 3.3 Site Administration

Overview of this book

In the past few years, we have seen some dramatic changes in the way Plone sites are being developed, deployed, and maintained. As a result, developing and deploying sites, changing their default settings, and performing day to day maintenance tasks can be a challenge. This book covers site administration tasks, from setting up a development instance, to optimizing a deployed production site, and more. It demonstrates how-to perform these tasks in a comprehensive way, and walks the user through the necessary steps to achieve results.We have divided the subject of Plone site administration into three categories: development, deployment, and maintenance. We begin by explaining how a Plone site is built, and how to start using it through the web. Next, we add features by installing add-on products, focusing on themes, blogging, and other common enhancements. After the basics of developing and deploying a Plone site are covered, the book covers the basics of maintaining it.Further, throughout the book we preview some new technologies related to Plone site administration, available now as add-ons to the current Plone release. Finally, we will cover a variety of techniques to help you optimize your site's performance.
Table of Contents (15 chapters)
Plone 3.3 Site Administration
Credits
Foreword
About the Author
About the Reviewer
Preface
Index

Installing CacheFu—a caching add-on for Plone


Traditionally, the very first thing many people do to improve Plone's performance is install the CacheFu add-on product.

CacheFu has been around since the Plone 2.5.x days, and has been a welcome addition for folks trying to improve the performance of an increasingly complex and slower running software stack.

Although it is not the magic elixir that many hope it to be, it does provide a decent, measurable improvement for very little effort; so it is usually a good idea to explore.

It does this by creating and configuring several cache-related Zope objects such as RAMCacheManager with a reasonable set of defaults. CacheFu saves you from having to learn and fully understand the necessary Zope 2 concepts needed to be able to create and configure these objects by hand. It also saves you from having to know about complex web caching, in general. You should probably learn these things too, but you don't have to learn them now.

The addition of CacheFu...