ius-coredev team mailing list archive
-
ius-coredev team
-
Mailing list archive
-
Message #04688
[Bug 1385446] Re: WL: php56u-pecl-memcached
I had a minor issue installing due to a conflict between my already
installed libmemcached-devel and libmemcached10-devel. But everything
was smooth after upgrading that package.
Tested with this code, works fine. Please move to stable.
<?php
$memcached = new Memcached;
$memcached->addServer('localhost',11211);
$var = $memcached->get('Foo');
var_dump($var);
if (empty($var)) {
$memcached->set('Foo', rand());
}
?>
--
You received this bug notification because you are a member of IUS Core
Development, which is subscribed to IUS Community Project.
https://bugs.launchpad.net/bugs/1385446
Title:
WL: php56u-pecl-memcached
Status in IUS Community Project:
Fix Committed
Bug description:
Could I please get memcached for PHP 5.6 so we can use caching in our
code?
To manage notifications about this bug go to:
https://bugs.launchpad.net/ius/+bug/1385446/+subscriptions
References