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.
我正在进行 api 调用,其中用户传递一个字符串,并使用该字符串查询数据库。返回正确的结果,但我想为不同的语言添加停用词以用于额外的过滤。
当我在搜索中使用“和”等词时,它会像应该的那样忽略它,但这仅适用于英语。
我创建了一个自定义搜索后端,它扩展了 whoosh_backend.SearchBackend,并在 build_schema 函数中将停用词列表传递给了 StemmingAnalyzer。