2

WAMPサーバーを実行していて、php_memcache拡張機能を有効にしてコードを試しました

<?php
    $memcache = new Memcache;
    $memcache->connect('localhost', 11211) or die ("Could not connect");

    $version = $memcache->getVersion();
    echo "Server's version: ".$version."<br/>\n";

    $tmp_object = new stdClass;
    $tmp_object->str_attr = 'test';
    $tmp_object->int_attr = 123;

    $memcache->set('key', $tmp_object, false, 10) or die ("Failed to save data at the server");
    echo "Store data in the cache (data will expire in 10 seconds)<br/>\n";

    $get_result = $memcache->get('key');
    echo "Data from the cache:<br/>\n";

    var_dump($get_result);
?>
4

1 に答える 1

0

インストールせずにMySqlサーバーに接続しようとしているようです。まず、memcached サーバーをインストールする必要があります。Windowsで memcache バケットを使用して、couchbase サーバーを使用できます。私見では、Windows OS に最適なポートです。

于 2013-07-01T14:25:34.880 に答える