Hide Forgot
project_key: EDG infinispan 4.2.0.CR3 https://github.com/infinispan/infinispan/blob/4.2.0.CR3/server/memcached/src/main/scala/org/infinispan/server/memcached/MemcachedValue.scala line 33 and 40 byte array length is written and read as byte and therefore MemcachedValue is marshalled incorrectly for byte arrays longer than Byte.MAX_VALUE I tested this using writeInt() and readInt() methods instead: output.writeInt(cacheValue.data.length) val data = new Array[Byte](input.readInt()) and it worked fine.
Indeed, should be the same as ByteArrayKey, which already uses writeInt and readInt. Thanks for spotting it Michal!
Link: Added: This issue depends ISPN-829
Affects Testing: Removed: Blocks Testing