In acquisitions our search does a 'contains' search on vendor name We then loop through the vendors and lookup the baskets We then lookup the groups for each basket we found It would be nice if we could fetch all the info needed in one call to the DB and possibly add paging
How many is many? 100, 1000, 10000?
(In reply to Jonathan Druart from comment #1) > How many is many? 100, 1000, 10000? Depends on the hardware.
(In reply to Kyle M Hall from comment #2) > (In reply to Jonathan Druart from comment #1) > > How many is many? 100, 1000, 10000? > > Depends on the hardware. Lol yes, I know, but it's good to have an idea to recreate the problem locally.
*** Bug 11215 has been marked as a duplicate of this bug. ***
(In reply to Jonathan Druart from comment #3) > (In reply to Kyle M Hall from comment #2) > > (In reply to Jonathan Druart from comment #1) > > > How many is many? 100, 1000, 10000? > > > > Depends on the hardware. > > Lol yes, I know, but it's good to have an idea to recreate the problem > locally. This will do it: #!/usr/bin/perl use t::lib::TestBuilder; my $builder = t::lib::TestBuilder->new; for ( my $i = 0; $i < 100; $i++ ) { my $b = $builder->build({ source => 'Aqbookseller' }); for ( my $i = 0; $i < 100; $i++ ) { my $basket = $builder->build({ source => 'Aqbasket', value => { booksellerid => $b->{id} } }); } }