...
|
...
|
@@ -251,7 +251,8 @@ class Service_Auth extends Lib_Service |
|
|
$columns = implode(',', $fields);
|
|
|
$tag = self::$_tag_userinfo . $uid;
|
|
|
$key = self::$_key_userinfo . md5($columns);
|
|
|
$result = self::service(self::ROUTER)->tag($tag)->key($key)->expire(self::EXPIRE)->fetchRow('getUserinfo', array('uid' => $uid), array('fields' => $columns));
|
|
|
// $result = self::service(self::ROUTER)->tag($tag)->key($key)->expire(self::EXPIRE)->fetchRow('getUserinfo', array('uid' => $uid), array('fields' => $columns));
|
|
|
$result = self::service(self::ROUTER)->cache(false)->fetchRow('getUserinfo', array('uid' => $uid), array('fields' => $columns));
|
|
|
}
|
|
|
|
|
|
return $result;
|
...
|
...
|
|