aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin
diff options
context:
space:
mode:
authorJohn Hurliman2009-10-23 13:14:29 -0700
committerJohn Hurliman2009-10-23 13:14:29 -0700
commita41cd1d0695c01e4096fa0b7696b415a4c7455fc (patch)
treea942c2f79906a7de36e3fe363fba2f8130e9f8c3 /bin
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-a41cd1d0695c01e4096fa0b7696b415a4c7455fc.zip
opensim-SC_OLD-a41cd1d0695c01e4096fa0b7696b415a4c7455fc.tar.gz
opensim-SC_OLD-a41cd1d0695c01e4096fa0b7696b415a4c7455fc.tar.bz2
opensim-SC_OLD-a41cd1d0695c01e4096fa0b7696b415a4c7455fc.tar.xz
* Unregister Mono.Addins event handlers in PluginLoader.Dispose() and always handle PluginLoader with the using pattern. This freed up 121,634,796 bytes on my system
* Avoid allocating an Action<IClientAPI> object every round of the OutgoingPacketHandler * Removed unnecessary semi-colon endings from OpenSim.ini.example [InterestManagement] section
Diffstat (limited to 'bin')
-rw-r--r--bin/OpenSim.ini.example10
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index f426556..9ee9829 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -1396,11 +1396,11 @@
1396[InterestManagement] 1396[InterestManagement]
1397 ; This section controls how state updates are prioritized for each client 1397 ; This section controls how state updates are prioritized for each client
1398 ; Valid values are Time, Distance, SimpleAngularDistance, and FrontBack 1398 ; Valid values are Time, Distance, SimpleAngularDistance, and FrontBack
1399 UpdatePrioritizationScheme = FrontBack; 1399 UpdatePrioritizationScheme = FrontBack
1400 ReprioritizationEnabled = true; 1400 ReprioritizationEnabled = true
1401 ReprioritizationInterval = 2000.0; 1401 ReprioritizationInterval = 2000.0
1402 RootReprioritizationDistance = 10.0; 1402 RootReprioritizationDistance = 10.0
1403 ChildReprioritizationDistance = 20.0; 1403 ChildReprioritizationDistance = 20.0
1404 1404
1405;; 1405;;
1406;; These are defaults that are overwritten below in [Architecture]. 1406;; These are defaults that are overwritten below in [Architecture].