• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

C++ (question)Query mysql (lua or C ++) which faster?

zetibia

Member
Joined
Jun 23, 2013
Messages
110
Reaction score
11
Is query and update by mysql faster in C ++ or luascript? Or is there no difference?
 
technically in c++ because c++ -> mysql instead of lua -> c++ -> mysql
but it literally doesn't even matter it's such an incredibly microscopic amount of time
it also really depends on what you need it for
if you really need it for the engine then put it in c++, if you're just creating a script in lua and using the database to hold some stuff then put it in lua
 
Back
Top