ruskid/sphinx-config-generator-php

Sphinx 配置生成器

dev-master 2017-09-25 14:14 UTC

This package is auto-updated.

Last update: 2024-08-27 08:51:13 UTC


README

不喜欢现有的解决方案,决定自己创建。分享就是关爱。

安装

安装此扩展的首选方式是通过 https://getcomposer.org.cn/download/

运行以下命令之一

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

或者

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

将以下内容添加到您的 composer.json 文件的 require 部分中。

用法

$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

请注意

保持基础源扩展源顺序...