We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suppose the QWER key does not exist. This code fails when trying to get a value by a nonexistent key:
<?php $loader = require __DIR__ . '/vendor/autoload.php'; $loop = React\EventLoop\Factory::create(); use \seregazhuk\React\Memcached\Factory; $memcached = Factory::createClient($loop); $memcached->get('QWER')->then( function ($data) { echo $data; }, function ($error) { echo $error; } ); $loop->run();
The text was updated successfully, but these errors were encountered:
This seems to be a big issue - prevents me from using the client... :(
@seregazhuk Are you still supporting this library?
Sorry, something went wrong.
Please fix this! The cache library (https://github.com/seregazhuk/php-react-cache-memcached) is meaningless without this
No branches or pull requests
Suppose the QWER key does not exist.
This code fails when trying to get a value by a nonexistent key:
The text was updated successfully, but these errors were encountered: