Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package main;
- public class BLIDindexerMaster {
- public static void main(String[] args)
- {
- // TODO Auto-generated method stub
- int threadInterval = 50000;
- int delay = 225;
- //the delay system is used to prevent Cloudflare from detecting this program as a DoS.
- for (int id = 0; id < 150000; id += threadInterval)
- {
- BLIDindexerThread it = new BLIDindexerThread(id, id + threadInterval, delay);
- new Thread(it).start();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment