Is there a way to share an iterator between gatling users (“threads”)?
What I’m seeing right now is that if I have something like:
val it = Iterator.continually(Seq(1,2,3))
And I pull values from this iterator (e.g., it.next), each gatling user will start at 1 and circulate to 3, rather than the first user starting at 1, the second user at 2, etc., as would happen if I used a feed. How can I simulate the feed behavior without using a feed?