diff options
author | David Walter Seikel | 2016-11-03 22:11:59 +1000 |
---|---|---|
committer | David Walter Seikel | 2016-11-03 22:11:59 +1000 |
commit | 7f7e25be924106a47f0d653bf3b32aa8314e7192 (patch) | |
tree | df1ef6ac7aa206097c1387f96a65e51c2e31bf87 /OpenSim/Data/MySQL/Resources/XAssetStore.migrations | |
parent | Usual IG version number in money hack. (diff) | |
download | opensim-SC_OLD-7f7e25be924106a47f0d653bf3b32aa8314e7192.zip opensim-SC_OLD-7f7e25be924106a47f0d653bf3b32aa8314e7192.tar.gz opensim-SC_OLD-7f7e25be924106a47f0d653bf3b32aa8314e7192.tar.bz2 opensim-SC_OLD-7f7e25be924106a47f0d653bf3b32aa8314e7192.tar.xz |
MyISAM is still much better performing for OpenSim.
This time we got the file system asset server, even better still. B-)
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/XAssetStore.migrations')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/XAssetStore.migrations | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/Resources/XAssetStore.migrations b/OpenSim/Data/MySQL/Resources/XAssetStore.migrations index 9459e3e..78d6e51 100644 --- a/OpenSim/Data/MySQL/Resources/XAssetStore.migrations +++ b/OpenSim/Data/MySQL/Resources/XAssetStore.migrations | |||
@@ -16,13 +16,13 @@ CREATE TABLE `XAssetsMeta` ( | |||
16 | `AssetFlags` int(11) NOT NULL, | 16 | `AssetFlags` int(11) NOT NULL, |
17 | `CreatorID` varchar(128) NOT NULL, | 17 | `CreatorID` varchar(128) NOT NULL, |
18 | PRIMARY KEY (`id`) | 18 | PRIMARY KEY (`id`) |
19 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Version 1'; | 19 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Version 1'; |
20 | 20 | ||
21 | CREATE TABLE `XAssetsData` ( | 21 | CREATE TABLE `XAssetsData` ( |
22 | `Hash` binary(32) NOT NULL, | 22 | `Hash` binary(32) NOT NULL, |
23 | `Data` longblob NOT NULL, | 23 | `Data` longblob NOT NULL, |
24 | PRIMARY KEY (`hash`) | 24 | PRIMARY KEY (`hash`) |
25 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Version 1'; | 25 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Version 1'; |
26 | 26 | ||
27 | COMMIT; | 27 | COMMIT; |
28 | 28 | ||