Size of a Propel On Demand Collection

424 Views Asked by At

I use OnDemandCollection with Propel, by calling

->setFormatter(ModelCriteria::FORMAT_ON_DEMAND)

to my query.

This is great as it can treat as many results as needed (up to 200 000 tested). However I need to get the number of results.

The resulting Propel Collection has a size of -1 (probably because each row is loaded on demand), so I tried

count($collection)
$collection->count()
$ite_cloned = clone $collection->getIterator()
iterator_count($ite_cloned)

But none returned me the count.

1

There are 1 best solutions below

2
On

You shouldn't use count on this collection as it's on-demand and it would be incredible slow. Better is to use your query object and fire ->count() on it.