in reply to Re^2: how do hashes work - complexity question
in thread how do hashes work - complexity question
Yeah, I did actually mean that he can rewrite his DB code so it would look like:
and it's possible (it depends on exact requirements) that the later loop may be replaced with a single DB query.for (1..5) { # select content of table $_ into temp table } for (1..10000) { # crosscheck with temp table }
|
|---|