The problem I’m running into is with PircBot, the IRC library I’m using in Java, it’s using up a lot of cpu because it keeps polling for new chat messages, and when I’m running multiple PircBot instances across multiple threads my cpu goes to poop. Is there a way I can have the threads sleep for like 10-15 seconds and then do one check for all of the messages? Btw, I’m trying to keep track of multiple chats at once, and I need the least cpu intensive way of doing this. That’s why I was trying to think of a way to do it with the website because my friend was able to be idle in 100 different chatrooms in his browser with little to no lag.