将gzcompress PHP字段添加到Sphinx Indexer问题

时间:2019-06-14 16:10:43

标签: php mysql sphinx

如何在Sphinx Indexer上添加索引以索引mysql数据库中的gzcompress行

我使用gzcompress PHP函数对每个页面的缓存进行编码,通过PHP mysql,输出通过PHP Mysql正常运行,但是当我尝试将表索引到狮身人面像搜索引擎时,由于某些符号,缓存gzcompress被剪切了可能如何解决此问题?

当我使用Sphinx index命令但没有获得完整的代码gzcompress时,我不会收到错误消息。

source v_v1_src_p0
{
  type                    = mysql

  sql_host                = 
  sql_user                = 
  sql_pass                = 
  sql_db                  = 
  sql_port                = 3306  # optional, default is 3306

  sql_query = SELECT \
    id as id, \
    unique_id, \
    data_id, \
    data_title, \
    cache, \
    update_time, \
    total_updates \
    FROM cache_page WHERE id % 5 = 0;

  sql_field_string = unique_id
  sql_field_string = data_id
  sql_field_string = data_title
  sql_attr_string = cache
  sql_attr_uint = update_time
}

index data_v1_index_p0
{
    source                  = v_v1_src_p0
    path                    = /_data_v1/data_v1_index_p0
}

0 个答案:

没有答案