X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fsocgraph.php;h=421a68cc9ef9212aad785505f179c2814cec5dab;hb=6ef69ad2dac6938643c8995dcbf39b63a7f235e2;hp=d4ecec459fbc80e1e7c4144d44502d768a3357aa;hpb=915689dd79c23128d01ef6356ba8881a3a25d37d;p=friendica.git diff --git a/include/socgraph.php b/include/socgraph.php index d4ecec459f..421a68cc9e 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -1079,8 +1079,8 @@ function suggestion_query($uid, $start = 0, $limit = 80) { return array(); } -// Uncommented because the result of the queries are to big to store it in the cache -// We need to decide if we want to change the db column type or if we want to delte it +// Uncommented because the result of the queries are to big to store it in the cache. +// We need to decide if we want to change the db column type or if we want to delete it. // $list = Cache::get("suggestion_query:".$uid.":".$start.":".$limit); // if (!is_null($list)) { // return $list; @@ -1118,8 +1118,8 @@ function suggestion_query($uid, $start = 0, $limit = 80) { ); if (count($r) && count($r) >= ($limit -1)) { -// Uncommented because the result of the queries are to big to store it in the cache -// We need to decide if we want to change the db column type or if we want to delte it +// Uncommented because the result of the queries are to big to store it in the cache. +// We need to decide if we want to change the db column type or if we want to delete it. // Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $r, CACHE_FIVE_MINUTES); return $r; @@ -1152,8 +1152,8 @@ function suggestion_query($uid, $start = 0, $limit = 80) { while (sizeof($list) > ($limit)) array_pop($list); -// Uncommented because the result of the queries are to big to store it in the cache -// We need to decide if we want to change the db column type or if we want to delte it +// Uncommented because the result of the queries are to big to store it in the cache. +// We need to decide if we want to change the db column type or if we want to delete it. // Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $list, CACHE_FIVE_MINUTES); return $list; }