mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
look mom, migrations in action. This adds a couple of indexes
to mysql regions that should help on performance of some of the selects. We should start capturing more data on performance bits to figure out where else we are missing indexes and add them via migrations as well.
This commit is contained in:
6
OpenSim/Data/MySQL/Resources/002_RegionStore.sql
Normal file
6
OpenSim/Data/MySQL/Resources/002_RegionStore.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
BEGIN;
|
||||
|
||||
CREATE index prims_regionuuid on prims(RegionUUID);
|
||||
CREATE index primitems_primid on primitems(primID);
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user