Recursion 101: A Foothold into Technical Gimkit

Alright, I need a bit of help here.

For my project, I need to perform about 23,000 calculations, or in other words, run a trigger 23,000 times. This isn’t fast, right now it takes about a minute and a half to complete. This is far too slow, and I want to speed it up.

The current approach I’m doing is to run the trigger 300 times a second, but I heard from getrithekd that you can do something with breaking the task into chunks and then having triggers run concurrently to achieve this. How do I do this? Do I just have a trigger recurse, and then wire it to another trigger to do a total of 600 triggerings a second? Or what?