我使用 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”