I have a very large (> JVM memory) payload that requires the extraction of 
certain fields for processing.  The twist is the fields have escaped json 
as the payload. Does Jackson have any capability of parsing this as a 
stream?

Example:
{
  "field1":"value1",
  "field2":"value2",
  "verylargedatablock": 
"{\"large1\":\"value1\",\"large2\":\"value2\",\"bigarray\":[{\"foo\":\"bar\"}]}"
}

I need to be able to  parse out fields from "verylargedatablock" without 
loading the entire value into memory in order to deserialize it.

-- 
You received this message because you are subscribed to the Google Groups 
"jackson-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jackson-user/c33f4add-fedb-4874-b599-ad212770db6an%40googlegroups.com.

Reply via email to