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

Incorrectly reads multiple value at once #20

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

Incorrectly reads multiple value at once #20

Logioniz opened this issue Mar 27, 2019 · 0 comments

Comments

@Logioniz
Copy link

Create 3 key/value pairs to test

$ nc -C 127.0.0.1 9003
set QWE 0 0 3
QWE
STORED
set ASD 0 0 3
ASD
STORED
set ZXC 0 0 3
ZXC
STORED
gets QWE ASD ZXC
VALUE QWE 0 3 37
QWE
VALUE ASD 0 3 38
ASD
VALUE ZXC 0 3 39
ZXC
END
^C
$

Try to read all of them at once via nc

$ nc -C 127.0.0.1 9003
get QWE ASD ZXC
VALUE QWE 0 3
QWE
VALUE ASD 0 3
ASD
VALUE ZXC 0 3
ZXC
END
^C
$

Try to read all of then via script

<?php

$loader = require __DIR__ . '/vendor/autoload.php';

$loop = React\EventLoop\Factory::create();

use \seregazhuk\React\Memcached\Factory;

$memcached = Factory::createClient($loop, '127.0.0.1:9003');
$memcached->get('QWE ASD ZXC')->then(
    function ($data) {
        echo $data;
    },
    function ($error) {
        echo $error;
    }
);

$loop->run();

We get only last value

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

1 participant