diff options
author | Diva Canto | 2013-07-24 11:13:31 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-24 11:25:24 -0700 |
commit | d8a6eb5641f3b16811695ff34d925ae27de8fa38 (patch) | |
tree | 3483085063ec256053c4593eb98a33c2deb51a7d /OpenSim | |
parent | Don't touch the Current Outfit folder also on coming back home (diff) | |
download | opensim-SC_OLD-d8a6eb5641f3b16811695ff34d925ae27de8fa38.zip opensim-SC_OLD-d8a6eb5641f3b16811695ff34d925ae27de8fa38.tar.gz opensim-SC_OLD-d8a6eb5641f3b16811695ff34d925ae27de8fa38.tar.bz2 opensim-SC_OLD-d8a6eb5641f3b16811695ff34d925ae27de8fa38.tar.xz |
Decreased the time of group cache to 1 min, because it was getting on my nerves that it takes so long to let go of old info.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Addons/Groups/RemoteConnectorCacheWrapper.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Addons/Groups/RemoteConnectorCacheWrapper.cs b/OpenSim/Addons/Groups/RemoteConnectorCacheWrapper.cs index 79d6fc5..3ac74fc 100644 --- a/OpenSim/Addons/Groups/RemoteConnectorCacheWrapper.cs +++ b/OpenSim/Addons/Groups/RemoteConnectorCacheWrapper.cs | |||
@@ -53,7 +53,7 @@ namespace OpenSim.Groups | |||
53 | private ForeignImporter m_ForeignImporter; | 53 | private ForeignImporter m_ForeignImporter; |
54 | 54 | ||
55 | private Dictionary<string, bool> m_ActiveRequests = new Dictionary<string, bool>(); | 55 | private Dictionary<string, bool> m_ActiveRequests = new Dictionary<string, bool>(); |
56 | private const int GROUPS_CACHE_TIMEOUT = 5 * 60; // 5 minutes | 56 | private const int GROUPS_CACHE_TIMEOUT = 1 * 60; // 1 minutes |
57 | 57 | ||
58 | // This all important cache cahces objects of different types: | 58 | // This all important cache cahces objects of different types: |
59 | // group-<GroupID> or group-<Name> => ExtendedGroupRecord | 59 | // group-<GroupID> or group-<Name> => ExtendedGroupRecord |