4546474849505152535455
public CacheableImpl(Object obj) { ByteBuffer tmp = ByteBuffer.allocate(1024, true); tmp.setAutoExpand(true); tmp.putObject(obj); bytes = new byte[tmp.capacity()]; tmp.get(bytes); cached = true; tmp.release(); tmp = null; }