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
Here is command we run
./src/nutcracker -c conf/nutcracker.trk.yml --verbose=8
Below is config mentioned above
primary-servers: listen: 127.0.0.1:22120 hash: crc32 distribution: modula timeout: 4000 backlog: 1024 preconnect: false server_retry_timeout: 2000 server_failure_limit: 10 servers: - 192.168.9.11:11211:1 - 192.168.9.8:11211:1 .... (19 servers more)
Options we use in direct connection from php libmemcached library
$memcached->setOption(\Memcached::OPT_HASH, \Memcached::HASH_CRC); $memcached->setOption(\Memcached::OPT_SERVER_FAILURE_LIMIT, 10); $memcached->setOption(\Memcached::OPT_COMPRESSION, false);
If we use proxy, data stored in wrong memcache instance, distribution and hash calculated wrong. So any advice please, what`s wrong?
Version | 3.1.5 -- | -- libmemcached version | 1.0.18
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here is command we run
Below is config mentioned above
Options we use in direct connection from php libmemcached library
If we use proxy, data stored in wrong memcache instance, distribution and hash calculated wrong.
So any advice please, what`s wrong?
The text was updated successfully, but these errors were encountered: