forked from awesomized/libmemcached
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
57 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Bugs, Known Issues and Insufficiencies | ||
|
||
## libhashkit | ||
|
||
### MurMur | ||
|
||
Hashkit's MurMur/MurMur3 are limited to the lower 32 bits. | ||
|
||
### crc32 | ||
|
||
Commit "[More Hashing methods](./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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters