Skip to content
New issue

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

Failed when key doesn't exists #19

Open
Logioniz opened this issue Mar 27, 2019 · 2 comments
Open

Failed when key doesn't exists #19

Logioniz opened this issue Mar 27, 2019 · 2 comments

Comments

@Logioniz
Copy link

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();

@pfk84
Copy link

pfk84 commented Mar 26, 2022

This seems to be a big issue - prevents me from using the client... :(

@seregazhuk Are you still supporting this library?

@SQKo
Copy link

SQKo commented Aug 19, 2022

Please fix this! The cache library (https://github.com/seregazhuk/php-react-cache-memcached) is meaningless without this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants