作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我正在尝试通过FosElasticaBundle获取查询结果,我
如果没有可能不突出显示这些单词,那么找不到用于过滤常见单词(和(或))的有效示例。到目前为止我的奋斗:
$searchForm = $this->createForm(SearchFormType::class, null);
$searchForm->handleRequest($request);
$matchQuery = new \Elastica\Query\Match();
$matchQuery->setField('_all', $queryString);
$searchQuery = new \Elastica\Query();
$searchQuery->setQuery($matchQuery);
$searchQuery->setHighlight(array(
"fields" => array(
"title" => new \stdClass(),
"content" => new \stdClass()
),
'pre_tags' => [
'<strong>'
],
'post_tags' => [
'</strong>'
],
'number_of_fragments' => [
'0'
]
));
最佳答案
您要忽略(和或)还是在搜索中没有值(value)?
如果是这种情况,您可能要在Elasticsearch索引上使用停用词。
这是引用。
https://www.elastic.co/guide/en/elasticsearch/guide/current/using-stopwords.html
关于elasticsearch - Fos Elastica从搜索查询中删除常用词(或其他)。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39973000/
我想从字符串中获取常用单词。 我发现了这个方法: http://jsbin.com/nufimudivu/1/edit for(var i = 0; i } } http://jsbin.co
从文本输入中找出最常见的词,不包括给定词的列表。如果有多个最大字数,则全部显示。 我的方法是 21/24 个测试用例,我似乎想不出我遗漏的 3 个测试用例。 我正在添加我现在拥有的代码,这对我来说是高
我是一名优秀的程序员,十分优秀!