aboutsummaryrefslogtreecommitdiff
path: root/src/phinde
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2016-08-30 13:10:03 +0200
committerChristian Weiske <cweiske@cweiske.de>2016-08-30 13:10:03 +0200
commitf77dad8f1dda382a23b9d22393e239be6c087a07 (patch)
tree398d9d418ff62618ff6a54be93c8c30c0a17faf0 /src/phinde
parentba1f6fc77827dba86b1ac0b62aa288dd0f977cb8 (diff)
downloadphinde-f77dad8f1dda382a23b9d22393e239be6c087a07.tar.gz
phinde-f77dad8f1dda382a23b9d22393e239be6c087a07.zip
Allow worker instances of multiple projects in parallel
Change "queuePrefix" configuration in each project Resolves: #5
Diffstat (limited to 'src/phinde')
-rw-r--r--src/phinde/Queue.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/phinde/Queue.php b/src/phinde/Queue.php
index 98f6462..406f27e 100644
--- a/src/phinde/Queue.php
+++ b/src/phinde/Queue.php
@@ -15,7 +15,7 @@ class Queue
{
echo "Queuing for indexing: $linkUrl\n";
$this->gmclient->doBackground(
- 'phinde_index',
+ $GLOBALS['phinde']['queuePrefix'] . 'phinde_index',
serialize(
array(
'url' => $linkUrl,
@@ -36,7 +36,7 @@ class Queue
{
echo "Queuing for crawling: $linkUrl\n";
$this->gmclient->doBackground(
- 'phinde_crawl',
+ $GLOBALS['phinde']['queuePrefix'] . 'phinde_crawl',
serialize(
array(
'url' => $linkUrl