Let talk Caching in VB 5

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Gizmo99
    Senior Member
    • Feb 2002
    • 202
    • 5.5.x

    Let talk Caching in VB 5

    I have used VB since 2*

    VB3 and 4 have no issue with Xcache and work swimmingly


    BUT

    VB5 ?

    It introduces 3 new area along with the normal 2 in config.php

    $config['Cache']['class'][0] = 'vB_Cache_Db'; //regular cache
    $config['Cache']['class'][1] = 'vB_Cache_Memory'; //fastest cache
    $config['Cache']['class'][2] = 'vB_Cache_Db'; //largest cache and longest life.

    $config['Datastore']['class'] = '';
    $config['Datastore']['prefix'] = '';

    what should and shouldn't be set to Xcache ?


    this is what I have set at the mo

    $config['Cache']['class'][0] = 'vB_Cache_XCache'; //regular cache
    $config['Cache']['class'][1] = 'vB_Cache_Db'; //fastest cache
    $config['Cache']['class'][2] = 'vB_Cache_XCache'; //largest cache and longest life.

    I don't have set

    $config['Datastore']['class'] = '';
    $config['Datastore']['prefix'] = '';

    Reason when I did the board ran like a ..... not showing post contents etc



    Giz
    Last edited by Gizmo99; Sun 5 Mar '17, 4:56am.
    http://bbs.rsownersclub.co.uk

Related Topics

Collapse

Working...