RedBeanPHP consumes all memory

224 views Asked by At

I've run into an issue where PHP process gets out of memory when there's too many beans found. E.g. when doing

$rows = R::find('myTable', 'id > 0');

and when there's 20k rows, PHP crashes. Is there a way to perhaps iterate through the result-set somehow, without consuming all available memory?

0

There are 0 answers