diff options
author | UbitUmarov | 2016-08-11 04:52:25 +0100 |
---|---|---|
committer | UbitUmarov | 2016-08-11 04:52:25 +0100 |
commit | b16d6c030246dd80434815e09c37618efda0e8dc (patch) | |
tree | e675408505669eabe46f86dbb336024b15b99365 /OpenSim/Region/OptionalModules/Avatar | |
parent | let physics know about region water level change (diff) | |
download | opensim-SC_OLD-b16d6c030246dd80434815e09c37618efda0e8dc.zip opensim-SC_OLD-b16d6c030246dd80434815e09c37618efda0e8dc.tar.gz opensim-SC_OLD-b16d6c030246dd80434815e09c37618efda0e8dc.tar.bz2 opensim-SC_OLD-b16d6c030246dd80434815e09c37618efda0e8dc.tar.xz |
stop renewing xml cache entries expires. Let them expire or grid changes will ignored as long something keeq requesting (like group profiles refreshs). reduce the expire time more ignoring folish config.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Avatar')
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupsServicesConnectorModule.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupsServicesConnectorModule.cs b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupsServicesConnectorModule.cs index 83f08e0..88189c9 100644 --- a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupsServicesConnectorModule.cs +++ b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupsServicesConnectorModule.cs | |||
@@ -1008,11 +1008,11 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | |||
1008 | respData.Add("error", e.ToString()); | 1008 | respData.Add("error", e.ToString()); |
1009 | return respData; | 1009 | return respData; |
1010 | } | 1010 | } |
1011 | } | ||
1012 | 1011 | ||
1013 | if ((m_cacheTimeout > 0) && (CacheKey != null)) | 1012 | if ((m_cacheTimeout > 0) && (CacheKey != null)) |
1014 | { | 1013 | { |
1015 | m_memoryCache.AddOrUpdate(CacheKey, resp, TimeSpan.FromSeconds(m_cacheTimeout)); | 1014 | m_memoryCache.AddOrUpdate(CacheKey, resp, TimeSpan.FromSeconds(10)); |
1015 | } | ||
1016 | } | 1016 | } |
1017 | 1017 | ||
1018 | if (resp.Value is Hashtable) | 1018 | if (resp.Value is Hashtable) |