16.05.2013, 14:16
Quote:
|
And does anyone misses unthreaded queries, thus queries without using callbacks (public's)?
|
|
And does anyone misses unthreaded queries, thus queries without using callbacks (public's)?
|
|
Hm, r20 is stable? Most interesting stability on Linux,Ubuntu 13.04
|
|
I'm using mysql for 2 years on my server, I was at first skeptical and lazy to convert to the threaded queries, but now I would never go back. They are easy to use when you get a hang on them and really increase the performance and response of the server, so in my opinion you shouldn't waste time re-implementing non-threaded queries.
|
|
@RealCop228, just be careful to make your variables big enough to hold all the data. If the data which is getting stored is too big for the variable or the destination variable is rather too small, then memory gets overwritten. With enough luck it was important memory and the server crashes, but in the normal case other variables will suddenly have a different value.
|
|
The normal format function should be faster and precisions work there as expected, but if you want to escape strings in your query, mysql_format is the better way to do it.
|
|
Windows: R20 - 11304 ms R21 - 4852 ms Improvement: 133% Linux: R20 - 7710 ms R21 - 5256 ms Improvement: 47% |
|
Windows: R20 - 504 ms R21 - 53 ms Improvement: 851% Linux: R20 - 575 ms R21 - 39 ms Improvement: 1374% |
When will R21 be released ? I can't wait for these improvements, especially that in my computer I load the server database from the server host and I love speed. I will do some comparations too when it will be released (before and after, all things which I load on init, in my computer then on host).