diff options
Diffstat (limited to 'bin/OpenSim.ini.example')
-rw-r--r-- | bin/OpenSim.ini.example | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 002745d..79d57d2 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -31,6 +31,15 @@ | |||
31 | 31 | ||
32 | ; To run a script every few minutes, set the script filename here | 32 | ; To run a script every few minutes, set the script filename here |
33 | ; timer_Script = "filename" | 33 | ; timer_Script = "filename" |
34 | |||
35 | ; ## | ||
36 | ; ## SYSTEM | ||
37 | ; ## | ||
38 | |||
39 | ; Sets the method that OpenSim will use to fire asynchronous | ||
40 | ; events. Valid values are UnsafeQueueUserWorkItem, | ||
41 | ; QueueUserWorkItem, BeginInvoke, SmartThreadPool, and Thread | ||
42 | ; async_call_method = SmartThreadPool | ||
34 | 43 | ||
35 | ; ## | 44 | ; ## |
36 | ; ## CLIENTS | 45 | ; ## CLIENTS |
@@ -42,6 +51,9 @@ | |||
42 | ; Set this to the DLL containing the client stack to use. | 51 | ; Set this to the DLL containing the client stack to use. |
43 | clientstack_plugin="OpenSim.Region.ClientStack.LindenUDP.dll" | 52 | clientstack_plugin="OpenSim.Region.ClientStack.LindenUDP.dll" |
44 | 53 | ||
54 | ; Max threads to allocate on the FireAndForget pool | ||
55 | MaxPoolThreads = 15 | ||
56 | |||
45 | ; ## | 57 | ; ## |
46 | ; ## REGIONS | 58 | ; ## REGIONS |
47 | ; ## | 59 | ; ## |
@@ -258,12 +270,9 @@ | |||
258 | ; Inventory database provider | 270 | ; Inventory database provider |
259 | inventory_plugin = "OpenSim.Data.SQLite.dll" | 271 | inventory_plugin = "OpenSim.Data.SQLite.dll" |
260 | ; inventory_plugin = "OpenSim.Data.MySQL.dll" | 272 | ; inventory_plugin = "OpenSim.Data.MySQL.dll" |
261 | ; inventory_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate | ||
262 | 273 | ||
263 | ; Inventory source SQLite example | 274 | ; Inventory source SQLite example |
264 | inventory_source = "URI=file:inventoryStore.db,version=3" | 275 | inventory_source = "URI=file:inventoryStore.db,version=3" |
265 | ; Inventory Source NHibernate example (DIALECT;DRIVER;CONNECTSTRING) | ||
266 | ; inventory_source = "SQLiteDialect;SqliteClientDriver;URI=file:Inventory.db,version=3" | ||
267 | ; Inventory Source MySQL example | 276 | ; Inventory Source MySQL example |
268 | ;inventory_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;" | 277 | ;inventory_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;" |
269 | 278 | ||
@@ -277,12 +286,9 @@ | |||
277 | ; | 286 | ; |
278 | userDatabase_plugin = "OpenSim.Data.SQLite.dll" | 287 | userDatabase_plugin = "OpenSim.Data.SQLite.dll" |
279 | ; userDatabase_plugin = "OpenSim.Data.MySQL.dll" | 288 | ; userDatabase_plugin = "OpenSim.Data.MySQL.dll" |
280 | ; userDatabase_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate | ||
281 | 289 | ||
282 | ; User source SQLite example | 290 | ; User source SQLite example |
283 | user_source = "URI=file:userprofiles.db,version=3" | 291 | user_source = "URI=file:userprofiles.db,version=3" |
284 | ; User Source NHibernate Example (DIALECT;DRIVER;CONNECTSTRING) | ||
285 | ; user_source = "SQLiteDialect;SqliteClientDriver;URI=file:User.db,version=3" | ||
286 | ; User Source MySQL example | 292 | ; User Source MySQL example |
287 | ;user_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;" | 293 | ;user_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;" |
288 | 294 | ||
@@ -1385,6 +1391,14 @@ | |||
1385 | ; | 1391 | ; |
1386 | ;TextureDataLimit = 5 | 1392 | ;TextureDataLimit = 5 |
1387 | 1393 | ||
1394 | [InterestManagement] | ||
1395 | ; This section controls how state updates are prioritized for each client | ||
1396 | UpdatePrioritizationScheme = Distance | ||
1397 | ReprioritizeUpdate = true | ||
1398 | RootUpdateReprioritizationDistance = 10.0 | ||
1399 | ChildUpdateReprioritizationDistance = 20.0 | ||
1400 | ReprioritizeUpdatesInterval = 5000.0 | ||
1401 | |||
1388 | ;; | 1402 | ;; |
1389 | ;; These are defaults that are overwritten below in [Architecture]. | 1403 | ;; These are defaults that are overwritten below in [Architecture]. |
1390 | ;; These defaults allow OpenSim to work out of the box with | 1404 | ;; These defaults allow OpenSim to work out of the box with |