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
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Create 3 key/value pairs to test
Try to read all of them at once via nc
Try to read all of then via script
We get only last value
The text was updated successfully, but these errors were encountered: