Commit 6159e5e05ffe674c467c5bc4feeea1ad117b82a8

Authored by unknown
2 parents 87831f3a e3b50a00

Merge branch 'edge' of git@github.com:ktgit/knowledgetree into edge

scripts/diagnoseIndexing.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +cd ../search2/indexing/bin
  4 +/usr/local/zend/bin/php -Cq diagnose.php
... ...
scripts/indexMigrationTask.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +cd ../search2/indexing/bin
  4 +/usr/local/zend/bin/php -Cq cronMigration.php
... ...
scripts/indexingTask.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +cd ../search2/indexing/bin
  4 +/usr/local/zend/bin/php -Cq cronIndexer.php
... ...
scripts/optimizeIndexes.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +cd ../search2/indexing/bin
  4 +/usr/local/zend/bin/php -Cq optimise.php
... ...
scripts/registerExtractorTypes.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +cd ../search2/indexing/bin
  4 +/usr/local/zend/bin/php -Cq registerTypes.php
... ...
scripts/savedSearchTask.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +cd ../search2/indexing/bin
  4 +/usr/local/zend/bin/php -Cq cronSavedSearch.php
... ...
scripts/schedulerTask.sh 0 → 100755
  1 +#!/bin/sh
  2 +
  3 +cd ../bin
  4 +while true; do
  5 +/usr/local/zend/bin/php -Cq scheduler.php
  6 + sleep 30
  7 +done
... ...