Closed tunhuh95 closed 6 years ago
Hi,
I doubt there is anything specific to Anorm about that, as the write
function is a plain tailrec one, appending/accumulating data, so prone to memory shortage.
Note that this tracker is for confirmed issue/actionable feature request. Please rather use Play MailingList or StackOverflow to ask question/for help.
Best regards
I'm working with big table with more than 4G data (approximate 2 million row). So, I tried to process row per row (not store in memory) like this https://github.com/playframework/anorm/blob/master/docs/manual/working/scalaGuide/main/sql/ScalaAnorm.md#streaming-results but I got a GC overhead error.
This is my code