aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-01-23 16:44:03 +0000
committerJustin Clarke Casey2008-01-23 16:44:03 +0000
commit2df8918aedbde5916e3d890321499ea4a30d46a9 (patch)
treed1862caaf61a715d469cfd20e7708e59e2d61be6 /OpenSim
parentusing embedded resources is a lot easier if you actually (diff)
downloadopensim-SC_OLD-2df8918aedbde5916e3d890321499ea4a30d46a9.zip
opensim-SC_OLD-2df8918aedbde5916e3d890321499ea4a30d46a9.tar.gz
opensim-SC_OLD-2df8918aedbde5916e3d890321499ea4a30d46a9.tar.bz2
opensim-SC_OLD-2df8918aedbde5916e3d890321499ea4a30d46a9.tar.xz
* 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.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Application/OpenSimMain.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs
index e84e239..9da1c05 100644
--- a/OpenSim/Region/Application/OpenSimMain.cs
+++ b/OpenSim/Region/Application/OpenSimMain.cs
@@ -171,7 +171,7 @@ namespace OpenSim
171 config.Set("serverside_object_permissions", false); 171 config.Set("serverside_object_permissions", false);
172 config.Set("storage_plugin", "OpenSim.Framework.Data.SQLite.dll"); 172 config.Set("storage_plugin", "OpenSim.Framework.Data.SQLite.dll");
173 config.Set("storage_connection_string", "URI=file:OpenSim.db,version=3"); 173 config.Set("storage_connection_string", "URI=file:OpenSim.db,version=3");
174 config.Set("storage_prim_inventories_experimental", false); 174 config.Set("storage_prim_inventories", true);
175 config.Set("startup_console_commands_file", String.Empty); 175 config.Set("startup_console_commands_file", String.Empty);
176 config.Set("shutdown_console_commands_file", String.Empty); 176 config.Set("shutdown_console_commands_file", String.Empty);
177 config.Set("script_engine", "OpenSim.Region.ScriptEngine.DotNetEngine.dll"); 177 config.Set("script_engine", "OpenSim.Region.ScriptEngine.DotNetEngine.dll");
@@ -250,7 +250,7 @@ namespace OpenSim
250 m_storageConnectionString 250 m_storageConnectionString
251 = startupConfig.GetString("storage_connection_string", "URI=file:OpenSim.db,version=3"); 251 = startupConfig.GetString("storage_connection_string", "URI=file:OpenSim.db,version=3");
252 m_storagePersistPrimInventories 252 m_storagePersistPrimInventories
253 = startupConfig.GetBoolean("storage_prim_inventories_experimental", false); 253 = startupConfig.GetBoolean("storage_prim_inventories", true);
254 254
255 m_startupCommandsFile = startupConfig.GetString("startup_console_commands_file", String.Empty); 255 m_startupCommandsFile = startupConfig.GetString("startup_console_commands_file", String.Empty);
256 m_shutdownCommandsFile = startupConfig.GetString("shutdown_console_commands_file", String.Empty); 256 m_shutdownCommandsFile = startupConfig.GetString("shutdown_console_commands_file", String.Empty);