ive wrote an module that people can get infomation about a user.
the problem is that it have to wait to the other is finished before it could start on the another one if two user is requesting info at once.
how could i solve that?
(Not very precise)LOOP START
checking incoming messages from the server
call each bind individualy based on incoming text
check incoming partyline activity
send some queued messages
clean somthing up
LOOP REPEAT
As ppslim explained for output messaging through an IRC server you are bound to the queue system of the bot and the penalty system of the IRC server.M0dj0 wrote:This is a very interresting topic for me aswell. In my case, my module keeps the information in an array with 10 elements. The information in the array is updated once every 24h. Users can type a trigger in a channel to get a print out of the information stored in the array.
I have the same issues that techie talks about. Any suggestions how to "speed" it up if multiple users use the trigger atonce ?
Hopefully it will be used in a channel with alot of people using it so some kind of "parallellism" would be nice to achive.
// M0dj0