Is there a limit to the size of JSON file which can be handled by Jackson? My JSON can be huge. Simple example:
{
"people": [
{
"Name": "John Smith",
"number": "123-456-789"
},
{MILIONS OF OTHER PEOPLES}
],
"cars": [MILIONS OF CARS],
"dogs": [MILIONS OF DOGS],
MORE HERE
}
It can be 5GB or more. I have to create it by using Jackson and send by network to another system. Memory is not a problem but what about Jackson? Can it write/read it without any problems?
Edit: I don't think it is a duplicate. I'm not asking how to parse huge Json files but what are the limits of Json/Jackson (if any)