10.11.2014, 11:42
Became interested in the question whether to always clear the cache after calling function cache_delete? So I call a function in it made the request in which the value of any returned and I returned it the result of the function. Do I need to return the result before the function to delete the cache?
for example:
GetPlayerEmail(playerid)
{
new query[128];
format(query, 128, "SELECT `email` FROM "MAIN_DB".`users` WHERE `id` = '%d'", PlayerInfo[playerid][User_ID]);
new Cache:result = mysql_query(g_SQL, query);
cache_get_row(0, 0, query);
cache_delete(result); // you need?
return query;
}
for example:
GetPlayerEmail(playerid)
{
new query[128];
format(query, 128, "SELECT `email` FROM "MAIN_DB".`users` WHERE `id` = '%d'", PlayerInfo[playerid][User_ID]);
new Cache:result = mysql_query(g_SQL, query);
cache_get_row(0, 0, query);
cache_delete(result); // you need?
return query;
}