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

Incorrect handle big message #21

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

Incorrect handle big message #21

Logioniz opened this issue Mar 27, 2019 · 0 comments

Comments

@Logioniz
Copy link

Logioniz commented Mar 27, 2019

When message is big then you should collect whole message via chunk of data.

In Client.php you have this code:

    protected function setConnectionHandlers(): void
    {
        $this->connection->on('data', function ($chunk) {
            $parsed = $this->parser->parseRawResponse($chunk);
            $this->resolveRequests($parsed);
        });
        ...
   }

It looks like you are not collecting the complete message through pieces of data, i.e. you think you have a full response from the server.

Test to check problem:

<?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->set('a', str_repeat('a', 1000000))
        ->then(function () use ($memcached) {
            return $memcached->get('a');
        })
        ->then(function ($data) use ($loop) {
            // var_dump($data);
            var_dump(1111);
            $loop->stop();
        });

$loop->run();
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