2017 © Pedro Peláez
 

library sphinx-config-generator-php

Sphinx config generator

image

ruskid/sphinx-config-generator-php

Sphinx config generator

  • Monday, September 25, 2017
  • by ruskid
  • Repository
  • 1 Watchers
  • 0 Stars
  • 161 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 11 % Grown

The README.md

Sphinx config (.conf) generator in PHP

Didn't like existing solutions, decided to create my own. Sharing is caring., (*1)

Installation

The preferred way to install this extension is through http://getcomposer.org/download/., (*2)

Either run, (*3)

php composer.phar require ruskid/sphinx-config-generator-php "dev-master"

or add, (*4)

"ruskid/sphinx-config-generator-php": "dev-master"

to the require section of your composer.json file., (*5)

Usage

$handler = new ConfigGenerator([
    'filepath' => __DIR__ . '/sphinx-generated.conf'
]);

//Add Index config
$handler->addConfig(new Config([
    'name' => 'indexer',
    'attributes' => [
        ...
        'mem_limit' => '32M'
        ...
    ]
]));

//Add search daemon config
$handler->addConfig(new Config([
    'name' => 'searchd',
    'attributes' => [
        ...
        'listen' => '9306:mysql41',
        'log' => '/var/log/searchd.log',
        ...
    ]
]));

//Add sources
$handler->addSource(new Source([
    'name' => 'base',
    'attributes' => [
        'type' => 'mysql',
        'sql_host' => 'host',
        'sql_user' => 'username',
        'sql_pass' => 'password',
        'sql_db' => 'database',
        'sql_port' => '3306',
        'sql_query_pre' => [
            'SET CHARACTER_SET_RESULTS=utf8',
            'SET NAMES utf8'
        ],
    ]
]));

$handler->addSource(new Source([
    'name' => 'extending_source',
    'extends' => 'base',
    'attributes' => [
        'sql_field_string' => [
            'label',
        ],
        'sql_attr_string' => ['label_url'],
        'sql_attr_float' => ['latitude', 'longitude'],
        'sql_attr_uint' => ['province_id', 'population']
    ]
]));

//Add indexes
$handler->addIndex(new Index([
    'name' => "extending_source_index",
    'attributes' => [
        ...
        'source' => 'extending_source'
        'path' => "/var/data/extending_source_index",
        ...
    ]
]));


$handler->getContents(); // get contents to be saved to .conf
$handler->saveConfig(); //save config file to filepath

Be aware

Maintain order of sources extending base sources..., (*6)

The Versions

25/09 2017

dev-master

9999999-dev https://github.com/ruskid/sphinx-config-generator-php

Sphinx config generator

  Sources   Download

GNU

The Requires

  • php >=5.4.0

 

by Victor Demin

php config generator sphinx