16.09.2013, 14:21
Hi, thanks for your plugin but i have a question
I used R5 version now i want to upgrade my GM on R33 on non threaded query cached, but your plugin is faster than R5/R6?
I try to check if is faster i see is same or other check i see R6 is faster, i'm probably wrong.
Example i try this query x 5 k on loop
But i have a problem with the fetch i don't know if is good.
I used R5 version now i want to upgrade my GM on R33 on non threaded query cached, but your plugin is faster than R5/R6?
I try to check if is faster i see is same or other check i see R6 is faster, i'm probably wrong.
Example i try this query x 5 k on loop
PHP код:
GetIpCountry_mysql(IpInfo[])
{
new query[256];
if(!strcmp("127.0.0.1", IpInfo, true))
{
query = "Localhost";
}
else
{
new DataSetting[4][10];
if(sscanf(IpInfo, "p<.>s[10]s[10]s[10]s[10]", DataSetting[0], DataSetting[1], DataSetting[2], DataSetting[3])) query = "Invalid IP";
else
{
format(query, sizeof query, "\
SELECT `Country`\
FROM `countrydetected`\
WHERE `Ip_From` <= ((16777216*%d) + (65536*%d) + (256*%d) + %d)\
AND `Ip_to` >= ((16777216*%d) + (65536*%d) + (256*%d) + %d) LIMIT 1",
strval(DataSetting[0]), strval(DataSetting[1]), strval(DataSetting[2]), strval(DataSetting[3]),
strval(DataSetting[0]), strval(DataSetting[1]), strval(DataSetting[2]), strval(DataSetting[3]));
new Cache:vquery = mysql_query(ConnexionBDD,query);
if(cache_get_row_count())
{
mysql_fetch_row(query);
}
else query = "Unknown";
cache_delete(vquery);
}
}
return query;
}