issue build couchbase 1.8 on centos5.8
hi all:
i build couchbase 1.8 on centos5.8,build success,use http://localhost:8091 access is ok,but have some issues.
[root@localhost couchbase]# telnet localhost 11211
Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.
Connection closed by foreign host.
use php set value and get value have error;
[18-May-2012 08:20:31 UTC] PHP Warning: Couchbase::get(): Failed to schedule get request: Temporary failure. Try again later in /usr/local/services/webroot/ccc.php on line 7
i make sure my php client is ok,i need help tks!
but use rpm install is no this problem;please ask why ?
[root@localhost webroot]# cat test3.php
<?php
$cb = new Couchbase("10.253.48.64", "Administrator", "123.com", "default");
$cb->set("g", 8);
var_dump($cb->get("g"));
?>
[21-May-2012 03:36:36 UTC] PHP Warning: Couchbase::get(): Failed to schedule get request: Temporary failure. Try again later in /usr/local/services/webroot/test3.php on line 7
I don't understand what you mean. What you're doing is not from an RPM install? What are you doing in this case?
Temporary failures occur when the system is low on memory. In that case, it's best to wait a moment and try again. The use of an exponential backoff algorithm makes sense here.
Did the PHP sample on couchbase.com/develop/php/current run properly for you?