aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.ini.example
diff options
context:
space:
mode:
Diffstat (limited to 'bin/OpenSim.ini.example')
-rw-r--r--bin/OpenSim.ini.example27
1 files changed, 16 insertions, 11 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 79d57d2..6ff70fc 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -38,8 +38,15 @@
38 38
39 ; Sets the method that OpenSim will use to fire asynchronous 39 ; Sets the method that OpenSim will use to fire asynchronous
40 ; events. Valid values are UnsafeQueueUserWorkItem, 40 ; events. Valid values are UnsafeQueueUserWorkItem,
41 ; QueueUserWorkItem, BeginInvoke, SmartThreadPool, and Thread 41 ; QueueUserWorkItem, BeginInvoke, SmartThreadPool, and Thread.
42 ; async_call_method = SmartThreadPool 42 ; SmartThreadPool is reported to work well on Mono/Linux, but
43 ; UnsafeQueueUserWorkItem has been benchmarked with better
44 ; performance on .NET/Windows
45 ;async_call_method = SmartThreadPool
46
47 ; Max threads to allocate on the FireAndForget thread pool
48 ; when running with the SmartThreadPool option above
49 MaxPoolThreads = 15
43 50
44 ; ## 51 ; ##
45 ; ## CLIENTS 52 ; ## CLIENTS
@@ -51,9 +58,6 @@
51 ; Set this to the DLL containing the client stack to use. 58 ; Set this to the DLL containing the client stack to use.
52 clientstack_plugin="OpenSim.Region.ClientStack.LindenUDP.dll" 59 clientstack_plugin="OpenSim.Region.ClientStack.LindenUDP.dll"
53 60
54 ; Max threads to allocate on the FireAndForget pool
55 MaxPoolThreads = 15
56
57 ; ## 61 ; ##
58 ; ## REGIONS 62 ; ## REGIONS
59 ; ## 63 ; ##
@@ -1392,12 +1396,13 @@
1392 ;TextureDataLimit = 5 1396 ;TextureDataLimit = 5
1393 1397
1394[InterestManagement] 1398[InterestManagement]
1395 ; This section controls how state updates are prioritized for each client 1399 ; This section controls how state updates are prioritized for each client
1396 UpdatePrioritizationScheme = Distance 1400 ; Valid values are Time, Distance, and SimpleAngularDistance
1397 ReprioritizeUpdate = true 1401 UpdatePrioritizationScheme = Distance;
1398 RootUpdateReprioritizationDistance = 10.0 1402 ReprioritizationEnabled = true;
1399 ChildUpdateReprioritizationDistance = 20.0 1403 ReprioritizationInterval = 2000.0;
1400 ReprioritizeUpdatesInterval = 5000.0 1404 RootReprioritizationDistance = 10.0;
1405 ChildReprioritizationDistance = 20.0;
1401 1406
1402;; 1407;;
1403;; These are defaults that are overwritten below in [Architecture]. 1408;; These are defaults that are overwritten below in [Architecture].