0

我使用 SPHINXSE 并且我查询了许多索引(就像 Barryhunter 在此处 Joining on Multiple SphinxSE Tables In Single Query解释的那样)

我的问题是

在每个索引中,我都有同名的列。

在我的 sphinxSe 表中,我有像这些属性一样命名的字段。

当我只对一个索引运行查询时,这些字段会被填充,但当我使用多个索引时不会。

我是个问题,因为我会使用 id 来简单地从找到该行的索引中识别。

由于源代码可能更好,请在我的 conf 和查询下方找到

在我的 sphinx.conf 中

   source src_article_tv : article_base {
          sql_query_pre = SET NAMES utf8
          sql_query = \
                 SELECT /* sphinx index search article_tv_base */ \
                         concat (id,'40'), \
                         id AS ressource_id, \
                         'article' AS ressource_type, \ (...)
         sql_attr_uint = ressource_id
         sql_attr_string = ressource_type

 (...)



source src_media_tv : media_base
{
        sql_query_pre = SET NAMES utf8
        sql_query = \
                SELECT /* sphinx index search full media */ \
                        concat (o.id,'20'), \
                        o.id AS ressource_id, \
                        'media_tv' AS ressource_type, \
(...)

        sql_attr_uint = ressource_id
        sql_attr_string = ressource_type


delimiter $$
CREATE TABLE `tv_generic` (
    `id` bigint(20) unsigned NOT NULL,
    `weight` int(11) NOT NULL,
    `query` varchar(3072) COLLATE utf8_unicode_ci NOT NULL,
    `ressource_id` bigint(20) unsigned NOT NULL,
    `ressource_type` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
    KEY `query` (`query`(1024))
) ENGINE=SPHINX DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
CONNECTION='sphinx://127.0.0.1:9312/idx_tv'$$

所以随着

SELECT * FROM search.tv_generic where query = 'mons;index=idx_article_tv';

或者

SELECT * FROM search.tv_generic where query = 'mons;index=idx_media_tv';

字段 ressource_id 和 ressource_type 已填充(具有良好的值)

但与

SELECT * FROM search.tv_generic where query = 'mons;index=idx_article_tv,idx_media_tv';

字段 ressource_id 和 ressource_type 为“0”

4

1 回答 1

0

我找到了一个“肮脏”的解决方案。

compat_sphinxql_magics = 1 

这是工作。

它仍然很脏,因为

  1. compat_sphinxql_magics = 1 已弃用http://sphinxsearch.com/forum/view.html?id=9239
  2. 我不明白为什么它与 compat_sphinxql_magics = 1 一起使用
于 2013-06-22T07:05:24.003 回答