]> git.mxchange.org Git - friendica.git/commitdiff
Moving the index creation commands into a readme file due to the fact that creating...
authorMichael Vogel <icarus@dabo.de>
Thu, 26 Jul 2012 05:38:51 +0000 (07:38 +0200)
committerMichael Vogel <icarus@dabo.de>
Thu, 26 Jul 2012 05:38:51 +0000 (07:38 +0200)
mods/readme.txt [new file with mode: 0644]
update.php

diff --git a/mods/readme.txt b/mods/readme.txt
new file mode 100644 (file)
index 0000000..9e79f84
--- /dev/null
@@ -0,0 +1,5 @@
+Site speed can be improved when the following indexes are set. They cannot be set through the update script because on large sites they will block the site for several minutes.
+
+CREATE INDEX `uid_commented` ON `item` (`uid`, `commented`);
+CREATE INDEX `uid_created` ON `item` (`uid`, `created`);
+CREATE INDEX `uid_unseen` ON `item` (`uid`, `unseen`);
index 2d80ee369dc03b4325228d94e6caebda9bdda52e..f98fb3ae714198810ca2b68e6505cde51e2f8297 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define( 'UPDATE_VERSION' , 1154 );
+define( 'UPDATE_VERSION' , 1153 );
 
 /**
  *
@@ -1336,16 +1336,3 @@ function update_1152() {
                return UPDATE_FAILED;
        return UPDATE_SUCCESS;
 }
-
-function update_1153() {
-       $r = q("CREATE INDEX `uid_commented` ON `item` (`uid`, `commented`)");
-       if(! $r)
-               return UPDATE_FAILED;
-       $r = q("CREATE INDEX `uid_created` ON `item` (`uid`, `created`)");
-       if(! $r)
-               return UPDATE_FAILED;
-       $r = q("CREATE INDEX `uid_unseen` ON `item` (`uid`, `unseen`)");
-       if(! $r)
-               return UPDATE_FAILED;
-       return UPDATE_SUCCESS;
-}