Use the cache, Luke!
parent
8231cb2231
commit
c146f2c8c4
|
@ -210,34 +210,17 @@ namespace OpenSim.Framework.Communications
|
|||
private string[] doUUIDNameRequest(UUID uuid)
|
||||
{
|
||||
string[] returnstring = new string[0];
|
||||
bool doLookup = false;
|
||||
CachedUserInfo uinfo = UserProfileCacheService.GetUserDetails(uuid);
|
||||
|
||||
lock (m_nameRequestCache)
|
||||
if ((uinfo != null) && (uinfo.UserProfile != null))
|
||||
{
|
||||
if (m_nameRequestCache.ContainsKey(uuid))
|
||||
returnstring = new string[2];
|
||||
returnstring[0] = uinfo.UserProfile.FirstName;
|
||||
returnstring[1] = uinfo.UserProfile.SurName;
|
||||
lock (m_nameRequestCache)
|
||||
{
|
||||
returnstring = m_nameRequestCache[uuid];
|
||||
}
|
||||
else
|
||||
{
|
||||
// we don't want to lock the dictionary while we're doing the lookup
|
||||
doLookup = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (doLookup) {
|
||||
UserProfileData profileData = m_userService.GetUserProfile(uuid);
|
||||
if (profileData != null)
|
||||
{
|
||||
returnstring = new string[2];
|
||||
// UUID profileId = profileData.ID;
|
||||
returnstring[0] = profileData.FirstName;
|
||||
returnstring[1] = profileData.SurName;
|
||||
lock (m_nameRequestCache)
|
||||
{
|
||||
if (!m_nameRequestCache.ContainsKey(uuid))
|
||||
m_nameRequestCache.Add(uuid, returnstring);
|
||||
}
|
||||
if (!m_nameRequestCache.ContainsKey(uuid))
|
||||
m_nameRequestCache.Add(uuid, returnstring);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue