Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Seems memcache client doesn't support UTF-8 string as its key. But I have to use i18n. Anyway to fix it?

java.lang.IllegalArgumentException: Key contains invalid characters:  ``HK:00:A Kung Wan''
at net.spy.memcached.MemcachedClient.validateKey(MemcachedClient.java:232)
at net.spy.memcached.MemcachedClient.addOp(MemcachedClient.java:254)
share|improve this question

1 Answer

The issue here isn't utf encoding. It's the fact that your key contains a space. Keys cannot have spaces, new lines, carriage returns, or null characters.

The line of code that produces the exception is below

if (b == ' ' || b == '\n' || b == '\r' || b == 0) { throw new IllegalArgumentException("Key contains invalid characters: ``" + key + "''"); }

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.