Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 Sphinx 主 SQL 查询(在 sphinx.conf 中)中使用变量?像这样:
sql_query = SELECT \ id, user_id, title \ FROM \ user_has_book \ WHERE user_id = $userid;
还是我必须加载所有书籍然后按 user_id 过滤?
加载所有书籍然后过滤。将 user_id 作为属性。
sql_query 运行一次以构建索引,一旦构建,indexer 或 searchd 就不会运行任何 sql 查询。