mirror of
https://github.com/apache/druid.git
synced 2025-02-09 11:34:54 +00:00
* Fix binary serialization in caching The previous caching code just concatenated a list of objects into a byte array -- this is actually not valid because jackson-databind uses enumerated references to strings internally, and concatenating multiple binary serialized objects can throw off the references. This change uses a single JsonGenerator to serialize the object list rather than concatenating byte arrays. * remove unused imports