I can save data locally, but not remotely. Is this a file permissions issue?
Here is the usual test code:
<?php
$mem = new Memcached();
$mem->addServer("xx.xx.xx.xx", 11211);
$result = $mem->get("blah");
if ($result) {
echo $result;} else {
echo "No matching key found. I'll add that now!";
$mem->set("blah", "I am data! I am held in memcached!") or die("Could not
save anything to memcached...");}?>
On the server and client I installed:
- memcached
- php5-memcached
Do I need to install libmemcached...' as well? or something else?
--
---
You received this message because you are subscribed to the Google Groups
"memcached" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.