Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/07/2013, 01:51
xorcista
 
Fecha de Ingreso: marzo-2008
Ubicación: hco
Mensajes: 23
Antigüedad: 16 años, 9 meses
Puntos: 1
Implementar phpfastcache

Hola, quiero implementar la clase "phpfastcache" para optimizar las consultas (reducirlas) a la DB , en el ejemplo citan el siguiente código:

Código PHP:
<?php
    
// In your config file
    
include("php_fast_cache.php");
    
// This is Optional Config only. You can skip these lines.
    // phpFastCache support "apc", "memcache", "memcached", "wincache" ,"files", "pdo", "mpdo" and "xcache"
    // You don't need to change your code when you change your caching system. Or simple keep it auto
    
phpFastCache::$storage "auto";
    
// End Optionals

    // In your Class, Functions, PHP Pages
    // try to get from Cache first.
    
$products phpFastCache::get("products_page");

    if(
$products == null) {
        
$products YOUR DB QUERIES || GET_PRODUCTS_FUNCTION;
        
// set products in to cache in 600 seconds = 10 minutes
        
phpFastCache::set("products_page",$products,600);
    }

    foreach(
$products as $product) {
        
// Output Your Contents HERE
    
}
?>
Intenté hacerlo sin resultados, alguna ayuda ?

Pd: éste es el link para descargar la clase: https://github.com/khoaofgod/phpfastcache