diff options
author | Justin Clarke Casey | 2008-01-11 18:44:53 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-01-11 18:44:53 +0000 |
commit | 82d7fb75227f30946e856aba3ec20e580532ebff (patch) | |
tree | da2e13ff63681e5280abe3ae244b3de8490d685f /OpenSim/Tools | |
parent | * Do database implementation for prim inventory items in mysql (diff) | |
download | opensim-SC_OLD-82d7fb75227f30946e856aba3ec20e580532ebff.zip opensim-SC_OLD-82d7fb75227f30946e856aba3ec20e580532ebff.tar.gz opensim-SC_OLD-82d7fb75227f30946e856aba3ec20e580532ebff.tar.bz2 opensim-SC_OLD-82d7fb75227f30946e856aba3ec20e580532ebff.tar.xz |
* Exprimental prim inventory persistence can now be enabled by users.
* This can be turned on by setting storage_prim_inventories_experimental = True in OpenSim.ini
* Implemented for sqlite and MySQL, no MSSQL implementation yet
* As an experimental feature, there is no guarantee that this won't take down your region or that the db representation won't need to change.
* More (and continuing) details at http://opensimulator.org/wiki/OpenSim:Prim_Inventory_Persistence
Diffstat (limited to 'OpenSim/Tools')
-rw-r--r-- | OpenSim/Tools/Export/OpenSimExport.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Tools/Export/OpenSimExport.cs b/OpenSim/Tools/Export/OpenSimExport.cs index 765f6a2..e260dc0 100644 --- a/OpenSim/Tools/Export/OpenSimExport.cs +++ b/OpenSim/Tools/Export/OpenSimExport.cs | |||
@@ -54,7 +54,8 @@ namespace OpenSim.Tools.Export | |||
54 | 54 | ||
55 | sman = new StorageManager( | 55 | sman = new StorageManager( |
56 | startup.GetString("storage_plugin", "OpenSim.DataStore.NullStorage.dll"), | 56 | startup.GetString("storage_plugin", "OpenSim.DataStore.NullStorage.dll"), |
57 | startup.GetString("storage_connection_string", "") | 57 | startup.GetString("storage_connection_string", ""), |
58 | false | ||
58 | ); | 59 | ); |
59 | } | 60 | } |
60 | 61 | ||
@@ -113,4 +114,4 @@ namespace OpenSim.Tools.Export | |||
113 | return config; | 114 | return config; |
114 | } | 115 | } |
115 | } | 116 | } |
116 | } \ No newline at end of file | 117 | } |