Does Exposed have a way to stream records or batch fetch records for
findAll()
I am trying to process ~400k records in a cron-job and I don’t want to load all of them into memory at once.
I’ve been googling for Kotlin Exposed Sequence or Kotlin Exposed Iterable
but I am not sure if they actually only pull records on demand from postgres or if they just expose the result of the query as an Iterable