Browse Source

define index drivers config

main
ghost 4 months ago
parent
commit
47b1cad89a
  1. 4
      example/config.json
  2. 27
      src/index.php

4
example/config.json

@ -7,6 +7,8 @@ @@ -7,6 +7,8 @@
"username":"",
"password":""
},
"index":
{
"manticore":
{
"name":"kvazar",
@ -20,5 +22,7 @@ @@ -20,5 +22,7 @@
"min_word_len":3,
"min_prefix_len":3
}
},
"driver":"manticore"
}
}

27
src/index.php

@ -12,9 +12,6 @@ if (false === sem_acquire($semaphore, true)) @@ -12,9 +12,6 @@ if (false === sem_acquire($semaphore, true))
);
}
// Load dependencies
require_once __DIR__ . '/../vendor/autoload.php';
// Init config
if (!file_exists(__DIR__ . '/../config.json'))
{
@ -29,14 +26,21 @@ $config = json_decode( @@ -29,14 +26,21 @@ $config = json_decode(
)
);
// Load dependencies
require_once __DIR__ . '/../vendor/autoload.php';
// Init index
switch ($config->index->driver)
{
case 'manticore':
try
{
$index = new \Kvazar\Index\Manticore(
(string) $config->manticore->name,
(array) $config->manticore->meta,
(string) $config->manticore->host,
(int) $config->manticore->port
(string) $config->index->manticore->name,
(array) $config->index->manticore->meta,
(string) $config->index->manticore->host,
(int) $config->index->manticore->port
);
}
@ -50,6 +54,15 @@ catch (Exception $exception) @@ -50,6 +54,15 @@ catch (Exception $exception)
);
}
break;
default:
exit(
_('Undefined index driver!')
);
}
// Init kevacoin
try
{

Loading…
Cancel
Save