i am working on a standalone java application (spring boot) that parse & process several big xml files around 3 ~ 4 Go to generate one file that combine the data in the 3 files ( 1st file is the specs of products, 2nd the details of products, 3rd file someother information for the prodect ) so to get the full information for one node i have to read all the file;
my issue that we don't have RAM ( our clients ) so i tried exist db ( just load the file & write it ) , it's kind fast but the RAM usage still too hight for 1.5 Go xml file, it will consume 1.6 ~ 1.7 go so is there any solution that can lower the ram usage
Thanks in advance