Posts: 72
Threads: 25
Joined: Aug 2012
Reputation:
0
Hi guys, I'm thinking about scripting using MySQL. What do you recommend to me? Threaded queries or not? BlueG plugin or some other? If BlueG plugin, which one r5, r6, r7?
Thank you.
Posts: 1,733
Threads: 20
Joined: Nov 2010
Reputation:
0
R5-R7 are old versions.
Use the latest BlueG's plugin: R37.
You could use non-threaded queries to load certain data before your server is opened to the public.
Vehicle-data, mission-data, house-data and such things should be loaded before the server is open, for such things you can use non-threaded queries (mysql_query).
Once the server is running, use threaded queries for everything else as you don't want lag because some query might block further execution of your script while waiting for MySQL to process the query.
Loading player-accounts, updating their cash and score, ... should be done using threaded queries.
Posts: 142
Threads: 5
Joined: Jun 2013
Start with R6 if you are too newbie on mysql.
Posts: 72
Threads: 25
Joined: Aug 2012
Reputation:
0
I'll try with BlueG r37, thank you for responses.