aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-10-22 01:29:26 -0700
committerFriendika <info@friendika.com>2011-10-22 01:29:26 -0700
commit0ada550a02552a6a31872662d43795d07507efa6 (patch)
tree219baf0ec4dafdff1f3f228cc0664c44228d02b7
parent3783d8860c2ceabc846ef915ce8ae5e4784107b2 (diff)
downloadvolse-hubzilla-0ada550a02552a6a31872662d43795d07507efa6.tar.gz
volse-hubzilla-0ada550a02552a6a31872662d43795d07507efa6.tar.bz2
volse-hubzilla-0ada550a02552a6a31872662d43795d07507efa6.zip
queue indexes
-rw-r--r--boot.php2
-rw-r--r--database.sql7
-rw-r--r--include/notifier.php1
-rw-r--r--update.php10
4 files changed, 16 insertions, 4 deletions
diff --git a/boot.php b/boot.php
index 9a7f038a1..13c96c9bd 100644
--- a/boot.php
+++ b/boot.php
@@ -10,7 +10,7 @@ require_once('include/nav.php');
define ( 'FRIENDIKA_PLATFORM', 'Free Friendika');
define ( 'FRIENDIKA_VERSION', '2.3.1141' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
-define ( 'DB_UPDATE_VERSION', 1097 );
+define ( 'DB_UPDATE_VERSION', 1098 );
define ( 'EOL', "<br />\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
diff --git a/database.sql b/database.sql
index c9e239075..5d7a3020c 100644
--- a/database.sql
+++ b/database.sql
@@ -477,7 +477,12 @@ CREATE TABLE IF NOT EXISTS `queue` (
`created` DATETIME NOT NULL ,
`last` DATETIME NOT NULL ,
`content` MEDIUMTEXT NOT NULL,
-`batch` TINYINT( 1 ) NOT NULL DEFAULT '0'
+`batch` TINYINT( 1 ) NOT NULL DEFAULT '0',
+INDEX ( `cid` ),
+INDEX ( `created` ),
+INDEX ( `last` ),
+INDEX ( `network` ),
+INDEX ( `batch` )
) ENGINE = MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `pconfig` (
diff --git a/include/notifier.php b/include/notifier.php
index d12119b05..61274bedf 100644
--- a/include/notifier.php
+++ b/include/notifier.php
@@ -784,7 +784,6 @@ function notifier_run($argv, $argc){
call_hooks('notifier_end',$target_item);
-
return;
}
diff --git a/update.php b/update.php
index ed6b9e05e..c85962691 100644
--- a/update.php
+++ b/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1097 );
+define( 'UPDATE_VERSION' , 1098 );
/**
*
@@ -800,4 +800,12 @@ function update_1096() {
q("ALTER TABLE `item` ADD `origin` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `deleted` , ADD INDEX ( `origin` ) ");
}
+function update_1097() {
+ q("ALTER TABLE `queue`
+ ADD INDEX (`cid`),
+ ADD INDEX (`created`),
+ ADD INDEX (`last`),
+ ADD INDEX (`network`),
+ ADD INDEX (`batch`) ");
+}