* Persistent prim inventory script storage is now turned on by default
* Persistence of things apart from scripts will be implemented later on - I at least want to do some work with asset server stats so loading can be monitored first. * No MSSQL implementation as of yet * Progress can be followed at http://opensimulator.org/wiki/OpenSim:Prim_Inventory_Persistence * Please let me know if you see issues resulting from this change.ThreadPoolClientBranch
parent
2a27eb883d
commit
2df8918aed
|
@ -171,7 +171,7 @@ namespace OpenSim
|
||||||
config.Set("serverside_object_permissions", false);
|
config.Set("serverside_object_permissions", false);
|
||||||
config.Set("storage_plugin", "OpenSim.Framework.Data.SQLite.dll");
|
config.Set("storage_plugin", "OpenSim.Framework.Data.SQLite.dll");
|
||||||
config.Set("storage_connection_string", "URI=file:OpenSim.db,version=3");
|
config.Set("storage_connection_string", "URI=file:OpenSim.db,version=3");
|
||||||
config.Set("storage_prim_inventories_experimental", false);
|
config.Set("storage_prim_inventories", true);
|
||||||
config.Set("startup_console_commands_file", String.Empty);
|
config.Set("startup_console_commands_file", String.Empty);
|
||||||
config.Set("shutdown_console_commands_file", String.Empty);
|
config.Set("shutdown_console_commands_file", String.Empty);
|
||||||
config.Set("script_engine", "OpenSim.Region.ScriptEngine.DotNetEngine.dll");
|
config.Set("script_engine", "OpenSim.Region.ScriptEngine.DotNetEngine.dll");
|
||||||
|
@ -250,7 +250,7 @@ namespace OpenSim
|
||||||
m_storageConnectionString
|
m_storageConnectionString
|
||||||
= startupConfig.GetString("storage_connection_string", "URI=file:OpenSim.db,version=3");
|
= startupConfig.GetString("storage_connection_string", "URI=file:OpenSim.db,version=3");
|
||||||
m_storagePersistPrimInventories
|
m_storagePersistPrimInventories
|
||||||
= startupConfig.GetBoolean("storage_prim_inventories_experimental", false);
|
= startupConfig.GetBoolean("storage_prim_inventories", true);
|
||||||
|
|
||||||
m_startupCommandsFile = startupConfig.GetString("startup_console_commands_file", String.Empty);
|
m_startupCommandsFile = startupConfig.GetString("startup_console_commands_file", String.Empty);
|
||||||
m_shutdownCommandsFile = startupConfig.GetString("shutdown_console_commands_file", String.Empty);
|
m_shutdownCommandsFile = startupConfig.GetString("shutdown_console_commands_file", String.Empty);
|
||||||
|
|
|
@ -30,11 +30,14 @@ storage_connection_string="URI=file:OpenSim.db,version=3";
|
||||||
; storage_connection_string="Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;";
|
; storage_connection_string="Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;";
|
||||||
|
|
||||||
; turn on experimental storage of prim inventories in the region database
|
; turn on experimental storage of prim inventories in the region database
|
||||||
; more details of the current state of this can be found at
|
|
||||||
|
; Prim inventory storage is now turned on by default
|
||||||
|
; However, this option remains in case it needs to be disabled
|
||||||
|
; More details of the current state of this can be found at
|
||||||
;
|
;
|
||||||
; http://opensimulator.org/wiki/OpenSim:Prim_Inventory_Persistence
|
; http://opensimulator.org/wiki/OpenSim:Prim_Inventory_Persistence
|
||||||
;
|
;
|
||||||
storage_prim_inventories_experimental = false
|
storage_prim_inventories = true
|
||||||
|
|
||||||
startup_console_commands_file = "startup_commands.txt"
|
startup_console_commands_file = "startup_commands.txt"
|
||||||
shutdown_console_commands_file = "shutdown_commands.txt"
|
shutdown_console_commands_file = "shutdown_commands.txt"
|
||||||
|
|
Loading…
Reference in New Issue