Re: threads and loops, WAS: while loop generates java.lang.StackOverflowError

2007-01-10 Thread Alexander Wallace
Excellent... that sounds like a good option to me (the multiple data files) Perhaps once i get to know the tool better i will delve into making CSV Dataset have an option to be per thread The whole thing starts to make more and more sense... Thanks! On Jan 10, 2007, at 12:46 PM, se

Re: threads and loops, WAS: while loop generates java.lang.StackOverflowError

2007-01-10 Thread sebb
The CSV Dataset (and CSVRead/StringFromFile functions) are designed to share the data between threads. So for example you can set up a file with many thousand different account ids and have multiple threads process a single account id each, perhaps performing a lot of different operations on each

Re: threads and loops, WAS: while loop generates java.lang.StackOverflowError

2007-01-10 Thread Alexander Wallace
that must be why a loop forever thing doesn't work Does this apply also to a for loop if i used the line count in the file? my queries file has all the queries a user excecutes in a a usecase of a web app... My idea was that if i made 1 thread excecute all queries, then added more thread