2

我做了这个函数:/* MEMCACHE */

function cache_query($sql,$nombre,$tiempo = -1){
    $cache = new Memcache();
    $cache->pconnect('localhost',11211);
    $query_cacheada = $cache->get($nombre);
    if ( $query_cacheada  === false ) {
             /* key not in memcache, perfom query, cache it and return */
         $res = mysql_query($sql);
         $cache->set($nombre,$res, 0, 60*60*24);  
         return $res; /* this looks good */
    }else{
             /* key in memcache, just return cached  */
         return $query_cacheada;  /* this doesnt return right elements */
    }
}

我使用的是这样的:

class text{

    protected $id;
    protected $key;
    protected $language;
    protected $text;

    function __construct($clave,$lan){
       $consulta = cache_query("SELECT * FROM textos  
                                WHERE clave = '$clave' AND lengua = '$lan'" ,"TRANSLATION_".$clave."_".$lan);


        if(mysql_num_rows($consulta)>0){
            while($item = mysql_fetch_array($consulta)){
                $this->id = $item['id'];
                $this->clave = $item['key'];
                $this->lengua = $item['language'];
                $this->texto = $item['text'];

            }
                return true;
         }
    }
    function get_text(){
          return $this->text;
    }
}
function translation($key,$language){
     $tem = new text($key,$language);
     return $tem->get_text();
}

然后:

$translationText = translation('hello','fr');

问题是它存储在缓存数组中(总是零),var_dump($m->get(k))返回:

int(0) int(0) int(0) int(0) int(0) int(0) int(0) int(0) int(0) int(0) int(0)......

并且$sql 查询很好,因为行收集得很好并且打印得很好,问题在于存储的值..

我已经清除了缓存(几次,以确保这些值不是来自以前的错误输出):

$consulta = $cache->get($nombre);
             /* manually*/
             $consulta = false;
        if ( $consulta === false) {
            $consulta = mysql_query($sql);
            $cache->set($nombre,$consulta, MEMCACHE_COMPRESSED, 60*60*24);
        };

所以..我错过了什么?

编辑

这是一个键盘,问题是 mysql_query 和 memecache 没有启用,但万一有人想摆弄它

http://codepad.viper-7.com/PJNepH

4

3 回答 3

3

您只能缓存可以序列化的内容。这包括除了类型资源(从成功的mysql_query返回)之外的所有内容。您需要稍微更改您的逻辑,以便缓存数组。改变这个:

$res = mysql_query($sql);
$cache->set($nombre,$res, 0, 60*60*24); 

至:

$res = mysql_query($sql);
$rows = array();
while($row = mysql_fetch_array($res)) $rows[] = $row;
$cache->set($nombre, $rows, 0, 60*60*24); 

然后改变这个:

if(mysql_num_rows($consulta)>0){
    while($item = mysql_fetch_array($consulta)){
        $this->id = $item['id'];
        $this->clave = $item['key'];
        $this->lengua = $item['language'];
        $this->texto = $item['text'];

    }
    return true;
}

至:

foreach($consulta as $item){
       $this->id = $item['id'];
       $this->clave = $item['key'];
       $this->lengua = $item['language'];
       $this->texto = $item['text'];
}

// This is your old code written to work with a 2D array instead of a resource,
// But this keeps overwriting the same variables in a loop,
// if you selected multiple rows; otherwise you don't even need a loop and can just do:

$this->id = $consulta[0]['id'];
$this->clave = $consulta[0]['key'];
$this->lengua = $consulta[0]['language'];
$this->texto = $consulta[0]['text'];
于 2012-05-28T23:19:41.900 回答
1

需要注意的重要一点是,您不能存储从mysql_query. 我建议遍历结果集,使用 获取它们mysql_fetch_array,然后将这些对象存储在缓存中。

编辑正如 PaulP.RO 指出的那样,显式序列化/反序列化是多余的。

$result = mysql_query($sql) or die("Query failed");

$results = array();

while ($array = mysql_fetch_array($result))
{
    $results[] = $array;
}

$cache->set($nombre, $results, MEMCACHE_COMPRESSED, 60*60*24);

从 memcached 中检索时,只需使用未序列化的数组。

$cachedItem = $cache->get($nombre);

if ($cachedItem !== false) {
    var_dump($cachedItem);
}
于 2012-05-28T23:17:34.813 回答
0

Memcache 不接受超过 30 天的 TTL。您还可以使用 0 的 ttl 将密钥设置为永不过期,或者将 ttl 设置为小于 30 天。

消除 memcached 的 30 天限制

要创建一个易于序列化的变量,您可以执行以下操作。

$consulta = mysql_query($sql);   
while ($row = mysql_fetch_assoc($consulta)) {
  $data[] = $row;
}
$cache->set($nombre,$data, MEMCACHE_COMPRESSED, 60*60*24);
于 2012-05-27T21:01:11.620 回答