Book Image

Drupal 7 Social Networking

Book Image

Drupal 7 Social Networking

Overview of this book

Drupal is ideally equipped to serve as a base system for creating a custom social networking site like Facebook or MySpace. While these large social networks have their place, niche social networking websites can help promote businesses, products, projects, and hobbies of any nature. Drupal 7 Social Networking provides careful instructions and clear explanations to take you through the setup and management of your social network site, covering topics from users, to marketing, to maintenance. It will help you create your own social networking site, suitable for whatever audience you choose! Starting from the very basics of both Drupal and Social Networking, right through to more complicated aspects, you will progressively learn how to add to and expand your social networking site and add more features. You will learn how to secure your social network, deploy it on the Internet, and keep it running and well maintained. As social networking sites rely on the participation of their users, this book helps you to structure your site in such a way so that users can easily and enjoyably contribute, thus creating a powerful social network.
Table of Contents (22 chapters)
Drupal 7 Social Networking
Credits
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface
Index

Basic performance tips


In the administration area under Configuration | Development | Performance we have a few performance options:

We can cache pages for anonymous users and blocks within our site. This takes a copy of the content and stores it outside of our database—either in the server's memory or on the file system. This reduces the work the server has to do to load these pages. We can also instruct Drupal to aggregate and compress our CSS and our JavaScript files, so that when a user visits our site, those files are generated and downloaded quicker, with fewer HTTP requests, helping to slightly reduce the load that our server is under.

Introduction to caching and caching options

Caching systems can reduce the number of database and file system requests the website makes when our users access it, by storing commonly used data in the system's memory (this is known as caching).

When we needed to access the contents of a commonly used file or frequently accessed database record, the information...