Posts: 2,640
Threads: 122
Joined: Feb 2010
Reputation:
0
What is the importance to use QueryFinish ?
Posts: 7,801
Threads: 187
Joined: Feb 2010
Reputation:
0
PAWN is single-threaded which means everything has to happen one thing after the other. I can't have two things happen at once, unless they are threaded- in which I can do multiple things at once. With threaded queries I can run multiple queries at once, without lagging up the server, or the DB. Awesome, right?
Posts: 2,640
Threads: 122
Joined: Feb 2010
Reputation:
0
Right, thanks for explain.