Configure xcache

Discussion in 'Server Management' started by MultiBam, Sep 29, 2015.

  1. MultiBam

    MultiBam Administrator Staff Member

    vi /usr/local/lib/php.ini

    /xcache

    Xcache Best Settings

    [xcache]
    extension_dir = "/usr/local/lib/php/extensions/no-debug-non-zts-20100525"
    xcache.admin.enable_auth="on"
    xcache.admin.user="pick_a_unique_username"
    ; password cleartext md5(your_password_and_copy_the_output_to_below)
    xcache.admin.pass="md5_password_above"
    xcache.cacher="On"
    xcache.coredump_directory=""
    xcache.count="4"
    xcache.size="128M"
    xcache.slots="8K"
    xcache.coveragedump_directory="/tmp/pcov/"
    xcache.coverager="Off"
    xcache.gc_interval="0"
    xcache.mmap_path="/dev/zero"
    xcache.optimizer="Off"
    xcache.readonly_protection="Off"
    xcache.stat="Off"
    xcache.test="Off"
    xcache.ttl="0"
    xcache.var_gc_interval="300"
    xcache.var_maxttl="0"
    xcache.var_count="2"
    xcache.var_size="0"
    xcache.var_slots="8K"
    xcache.var_ttl="0"

    XCache settings that need your attention

    • xcache.admin.user – There is an HTTP authentication window when you access the admin page, this is the username
    • xcache.admin.pass – You need to create md5 password for authentication.
    • xcache.size – This is the most critical setting. xcache.size setting refers to the aggregate memory of all cache threads. So, each thread gets roughly size/count amount of memory. If you have multiple sites and around 4GB or more, 128M seems like a good number. Please beware, setting xcache.size to zero is equivalent to disabling xcache.
    • xcache.count – This number divides total cache size into threads in order to increase the efficiency. If you have 128M xcache.size and you set the count as 4, that means each thread will manage 32M size of cache.
    • xcache.slots – This is one of the most confused and least explained settings. According to XCache Wiki, Keeping xcache.slots small means more slots in memory thus better performance but more memory usage. I don’t really understand the logic behind it so I leave it as is.
    • xcache.var_size – Variable cache is different then regular cache. Do you need this or not really depends on your application. See below for further info.
    • xcache.var_count xcache.var_slots xcache.var_ttl are all alike their non-var versions so I skip them.
    • xcache.ttl=0 means we want file to remain in the cache forever.
    XCache settings that you can’t care less
    • xcache.mmap_path=”/dev/zero” seems like beating the purpose but it is not. The reason you would write the output of a memory cache to a file is mainly to check and make sure you have the correct data. In other words, you would be doing read/write and read to make sure your data is safe. Dumping it to null means, you don’t care about the data consistency but just the performance and if something is broken in the cache, you are not too worried about it.
    • xcache.readonly_protection=”Off” – According to XCache Wiki, The cache can be corrupted by accident, it might be modified along the process – before or after the cache so the cache with readonly permission won’t allow this happen.
    • xcache.stat determines whether Xcache should check the filesystem to see if the file has changed or not.
    XCache comes with two different caches
    • Static cache that are generated by compiling your PHP scripts
    • Variable cache that can be used by application through XCache API
    If your application is not taking advantage of XCache variable cache then there is no need to enable variable cache so you would use xcache.var_size=”0″. W3 Cache for WordPress is able to xCache, there are other tools and plugins that are compatible with XCache but not all the software can take advantage of this storage.

    I would highly recommend you to take a look at the Dashboard to see how XCache is performing for your environment and make the adjustments accordingly.

    How do you reset XCache cache?
    One last thing before finish, xcache var is reset when you restart the PHP service. If you are using PHP bound with Apache, restarting Apache will kill the cache. If you are using PHP like PHP-FPM, restarting PHP-FPM proxy service will clean the cache.
     
Tags:

Share This Page