wagtail/docs/advanced_topics/performance.rst

67 wiersze
2.5 KiB
ReStructuredText
Czysty Zwykły widok Historia

2014-02-18 17:45:31 +00:00
Performance
===========
Wagtail is designed for speed, both in the editor interface and on the front-end, but if you want even better performance or you need to handle very high volumes of traffic, here are some tips on eking out the most from your installation.
2014-02-18 17:45:31 +00:00
2014-07-15 13:16:22 +00:00
2014-02-18 17:45:31 +00:00
Editor interface
~~~~~~~~~~~~~~~~
We have tried to minimise external dependencies for a working installation of Wagtail, in order to make it as simple as possible to get going. However, a number of default settings can be configured for better performance:
2014-07-15 13:16:22 +00:00
2014-02-18 17:45:31 +00:00
Cache
-----
2015-05-14 10:29:00 +00:00
We recommend `Redis <http://redis.io/>`_ as a fast, persistent cache. Install Redis through your package manager (on Debian or Ubuntu: ``sudo apt-get install redis-server``), add ``django-redis`` to your ``requirements.txt``, and enable it as a cache backend::
2014-02-18 17:45:31 +00:00
CACHES = {
'default': {
'BACKEND': 'django_redis.cache.RedisCache',
2014-02-18 17:45:31 +00:00
'LOCATION': '127.0.0.1:6379',
'OPTIONS': {
'CLIENT_CLASS': 'django_redis.client.DefaultClient',
2014-02-18 17:45:31 +00:00
}
}
}
2014-02-18 17:45:31 +00:00
Search
------
Wagtail has strong support for `Elasticsearch <http://www.elasticsearch.org/>`_ - both in the editor interface and for users of your site - but can fall back to a database search if Elasticsearch isn't present. Elasticsearch is faster and more powerful than the Django ORM for text search, so we recommend installing it or using a hosted service like `Searchly <http://www.searchly.com/>`_.
2015-05-28 09:12:48 +00:00
Once the Elasticsearch server is installed and running. Install the ``elasticsearch`` Python module with::
pip install elasticsearch
then add the following to your settings::
WAGTAILSEARCH_BACKENDS = {
'default': {
'BACKEND': 'wagtail.wagtailsearch.backends.elasticsearch.ElasticSearch',
'INDEX': '{{ project_name }}',
},
}
Once Elasticsearch is configured, you can index any existing content you may have::
./manage.py update_index
2014-07-15 13:16:22 +00:00
2014-02-18 17:45:31 +00:00
Database
--------
Wagtail is tested on SQLite, and should work on other Django-supported database backends, but we recommend PostgreSQL for production use.
2014-07-15 13:16:22 +00:00
2014-02-18 17:45:31 +00:00
Public users
~~~~~~~~~~~~
Caching proxy
-------------
To support high volumes of traffic with excellent response times, we recommend a caching proxy. Both `Varnish <http://www.varnish-cache.org/>`_ and `Squid <http://www.squid-cache.org/>`_ have been tested in production. Hosted proxies like `Cloudflare <https://www.cloudflare.com/>`_ should also work well.
2014-07-15 13:16:22 +00:00
Wagtail supports automatic cache invalidation for Varnish/Squid. See :ref:`frontend_cache_purging` for more information.