1

基本的に、memcachedを使用するのは初めてです...単純なクエリを実行しようとしていますが、何らかの理由で機能していません... memcachedに関するチュートリアルはあまり良くなく、なぜクエリが機能しないのかわかりません

    <?php

    //connect to memcached server and MySQL
$db = new PDO('mysql:host=localhost;dbname=test', 'admin', '');
$memcache = new Memcache;
$memcache->connect('127.0.0.1', 11211) or die ("Could not connect"); 


 // Run the query and get the data from the database then cache it
 $category_querry = $db->query('SELECT * FROM category WHERE category_id=1');
 $category_querry->setFetchMode(PDO::FETCH_ASSOC);

while($row = $category_querry->fetch()) {

 $memcache->set(1, $row['category_name'], 30); // Store the result of the query for 20 seconds
  var_dump($memcache->get(1));
 echo "</br> Data Pulled from the Database </br>";
}


$get_result = $memcache->get(1);
var_dump($get_result);

if ($get_result) 
    {
echo "</br>" . $get_result['category_name'];
echo "</br>" .  "Data Pulled From Cache";
}

コードが更新されましたどういうわけか、IFステートメントを入力させました。ブラウザに表示されるのは

string(3) "one" 
Data Pulled from the Database 
string(3) "one" 
o
Data Pulled From Cache

これにより、すべてのvar_dumpsが機能することがわかります。ifステートメントに到達しますが、どういうわけか、出力する必要があるときに$get_result['category_name']のみ出力されます。oone

どうして???

4

1 に答える 1

0

memcache を設定するときに、$key 変数が定義されていません

$memcache->set($key, $row, TRUE, 60);

memcache に設定する前に $key を定義する必要があります

于 2012-07-27T08:38:37.693 に答える