Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You will need to install memcached on your server and will probably need root access to do so. You can get memcached from <a href="http://www.danga.com/memcached/" rel="noreferrer">http://www.danga.com/memcached/</a>. It requires libevent, which can be downloaded here: <a href="http://www.monkey.org/~provos/libevent/" rel="noreferrer">http://www.monkey.org/~provos/libevent/</a></p> <p>Finally, you'll need to get the PHP PECL extension for memcache. To install this, you need to go to the server where PHP is installed and run this command:</p> <pre><code>pecl install memcache </code></pre> <p>Again, you will most likely need root access to your server to do this. After you have libevent, memcached, and the PECL extensions installed, go to the Global Configuration in Joomla and choose <code>Memory Cache</code> as the Cache Handler under Cache Settings. After you save the Global Configuration, open it again and more inputs should appear underneath the Cache Handler input. Set Memory Chache Server to <code>localhost</code> and the port to <code>11211</code>. This should match the parameters you use to run <code>memcached</code> from the command line.</p> <p>EDIT: You can also use XCache not only to store data in a way similar to Memcache, but it will also cache the opcode generated by PHP. This way, instead of reading the PHP code from disk and parsing it each time, it will hold the code in memory for the next request.</p> <p>Be sure to select <code>XCache</code> as the Cache Handler in Global Configuration. Read this for information on installing XCache: <a href="http://xcache.lighttpd.net/wiki/InstallFromSource" rel="noreferrer">http://xcache.lighttpd.net/wiki/InstallFromSource</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload