We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51a4b78 commit 10855a6Copy full SHA for 10855a6
src/main/java/org/mybatis/caches/memcached/MemcachedClientWrapper.java
@@ -63,7 +63,7 @@ public MemcachedClientWrapper() {
63
* @return the proper string representation.
64
*/
65
private String toKeyString(final Object key) {
66
- String keyString = configuration.getKeyPrefix() + Integer.toHexString(key.hashCode());
+ String keyString = configuration.getKeyPrefix() + key; // issue #660, key collision
67
if (log.isDebugEnabled()) {
68
log.debug("Object key '"
69
+ key
0 commit comments