Server IP : 195.201.23.43 / Your IP : 3.148.109.137 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/libmemcached11/ |
Upload File : |
# Bugs, Known Issues and Insufficiencies ## libhashkit libhashkit is not usable for general purpose hashing, because it is geared to usage by libmemcached. ### MurMur Hashkit's MurMur/MurMur3 are limited to the lower 32 bits. ### crc32 Commit "[More Hashing methods](https://github.com/awesomized/libmemcached/commits/1207354f)" from October 2007 first released in v0.8, which main intention seems to have been to add FNV1 hash algos, changed the result of the crc32 hash to only its upper 16 bits sans MSB, without any additional comment. The implementations referred to in the file header (Postgres and BSD) do not exhibit this behavior. A [bug report](https://bugs.launchpad.net/libmemcached/+bug/604178) was filed three years later on launchpad, which was marked `Won't fix` with the comment that it was for compatibility with other "drivers", which supposedly refers to other memcached client libraries. ## libmemcached ### Replication This is a somewhat badly named feature, because it **does not** provide any of the guaranties one would expect from a proper replication. One can set the intended number of additional servers where data should be stored with the behavior `MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS` and specify whether `MGET`s/`GET`s should read from a random server with `MEMCACHED_BEHAVIOR_RANDOMIZE_REPLICA_READ`. `DELETE`s will try to delete the key from all replicas. The binary protocol is required and any other command is unaffected. ### TLS/SSL libmemcached does not support TLS/SSL, yet. See [github issue #37](https://github.com/awesomized/libmemcached/issues/37). ### Coroutines and event loops libmemcached does not support explicit asynchronous usage, yet. See [github issue #54](https://github.com/awesomized/libmemcached/issues/54). ### META protocol libmemcached deos not support memcached's META protocol, yet. See [github issue #121](https://github.com/awesomized/libmemcached/issues/121).Private