- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试按语言过滤我的Elastica查询。我的查询工作正常,但是当我添加过滤器时,我得到0个结果。
我的实体:
<?php
namespace Youmiam\RecipeBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
use JMS\Serializer\Annotation\ExclusionPolicy;
use JMS\Serializer\Annotation\Expose;
use Symfony\Component\Validator\Constraints as Assert;
use Symfony\Component\HttpFoundation\File\UploadedFile;
/**
* Product
*
* @ORM\Table(name="product")
* @ExclusionPolicy("all")
* @ORM\Entity(repositoryClass="Youmiam\RecipeBundle\Entity\ProductRepository")
*/
class Product
{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var \DateTime
*
* @ORM\Column(name="createdAt", type="datetime")
*/
private $createdAt;
/**
* @var string
*
* @ORM\Column(name="name", type="string", length=255, nullable=true)
*/
private $name;
/**
* @ORM\ManyToOne(targetEntity="Youmiam\RecipeBundle\Entity\Brand", inversedBy="products")
* @ORM\JoinColumn(name="brand_id", referencedColumnName="id")
*/
private $brand;
/**
* @ORM\ManyToOne(targetEntity="Youmiam\RecipeBundle\Entity\Ingredient", inversedBy="products")
* @ORM\JoinColumn(name="ingredient_id", referencedColumnName="id")
* @Expose
*/
private $ingredient;
/**
* @ORM\ManyToMany(targetEntity="Youmiam\RecipeBundle\Entity\Recipe", inversedBy="products")
* @ORM\JoinTable(name="products__recipes")
*/
private $recipes;
/**
* @ORM\OneToMany(targetEntity="Youmiam\RecipeBundle\Entity\Quantity", mappedBy="product", orphanRemoval=true, cascade={"all"})
*/
private $quantities;
/**
* @var \stdClass
*
* @ORM\Column(name="photo", type="string", length=255, nullable=true)
* @Expose
*/
private $photo;
/**
* @Assert\File(maxSize="6000000")
*/
private $file;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set createdAt
*
* @param \DateTime $createdAt
* @return Product
*/
public function setCreatedAt($createdAt)
{
$this->createdAt = $createdAt;
return $this;
}
/**
* Get createdAt
*
* @return \DateTime
*/
public function getCreatedAt()
{
return $this->createdAt;
}
/**
* Set name
*
* @param string $name
* @return Product
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* Get name
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Set ingredient
*
* @param \Youmiam\RecipeBundle\Entity\Ingredient $ingredient
* @return Product
*/
public function setIngredient(\Youmiam\RecipeBundle\Entity\Ingredient $ingredient = null)
{
$this->ingredient = $ingredient;
return $this;
}
/**
* Get ingredient
*
* @return \Youmiam\RecipeBundle\Entity\Ingredient
*/
public function getIngredient()
{
return $this->ingredient;
}
/**
* Set brand
*
* @param \Youmiam\RecipeBundle\Entity\Brand $brand
* @return Product
*/
public function setBrand(\Youmiam\RecipeBundle\Entity\Brand $brand = null)
{
$this->brand = $brand;
return $this;
}
/**
* Get brand
*
* @return \Youmiam\RecipeBundle\Entity\Brand
*/
public function getBrand()
{
return $this->brand;
}
/**
* Constructor
*/
public function __construct()
{
$this->recipes = new \Doctrine\Common\Collections\ArrayCollection();
$this->quantities = new \Doctrine\Common\Collections\ArrayCollection();
}
/**
* Set photo
*
* @param string $photo
* @return Product
*/
public function setPhoto($photo)
{
$this->photo = $photo;
return $this;
}
/**
* Get photo
*
* @return string
*/
public function getPhoto()
{
return $this->photo;
}
/**
* Sets file.
*
* @param UploadedFile $file
*/
public function setFile(UploadedFile $file = null)
{
$this->file = $file;
}
/**
* Get file.
*
* @return UploadedFile
*/
public function getFile()
{
return $this->file;
}
/**
* Add recipes
*
* @param \Youmiam\RecipeBundle\Entity\Recipe $recipes
* @return Product
*/
public function addRecipe(\Youmiam\RecipeBundle\Entity\Recipe $recipes)
{
$this->recipes[] = $recipes;
return $this;
}
/**
* Remove recipes
*
* @param \Youmiam\RecipeBundle\Entity\Recipe $recipes
*/
public function removeRecipe(\Youmiam\RecipeBundle\Entity\Recipe $recipes)
{
$this->recipes->removeElement($recipes);
}
/**
* Get recipes
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getRecipes()
{
return $this->recipes;
}
/**
* Add quantities
*
* @param \Youmiam\RecipeBundle\Entity\Quantity $quantities
* @return Product
*/
public function addQuantity(\Youmiam\RecipeBundle\Entity\Quantity $quantities)
{
$this->quantities[] = $quantities;
return $this;
}
/**
* Remove quantities
*
* @param \Youmiam\RecipeBundle\Entity\Quantity $quantities
*/
public function removeQuantity(\Youmiam\RecipeBundle\Entity\Quantity $quantities)
{
$this->quantities->removeElement($quantities);
}
/**
* Get quantities
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getQuantities()
{
return $this->quantities;
}
/**
* get the class Name
* @return string $className
*/
public function getClass()
{
return "Product";
}
/**
* @return Language
*/
public function getBrandLanguage()
{
return $this->brand->getLanguage();
}
}
fos_elastica:
clients:
default: { host: localhost, port: 9200 }
indexes:
youmiam:
settings:
index:
analysis:
analyzer:
keyword_analyser:
type: custom
tokenizer: keyword
classic_analyser:
type: custom
tokenizer: lowercase
filter : [my_snow,asciifolding]
ingr_analyser:
type: custom
tokenizer: lowercase
filter : [my_ing_ngram,asciifolding]
recipe_analyser:
type: custom
tokenizer: lowercase
filter : [my_recipe_ngram,asciifolding]
testfollower:
type: stop
stopwords : [',']
filter:
my_snow:
type : "snowball"
language : "French"
my_ing_ngram:
type: "nGram"
min_gram: 3
max_gram: 8
my_recipe_ngram:
type: "nGram"
min_gram: 4
max_gram: 10
char_filter:
my_whtoa :
type : mapping
mappings : ["' '=>a",]
client: default
finder: ~
types:
product:
mappings:
name: { boost: 10, analyzer: classic_analyser }
brand: { boost: 10, analyzer: classic_analyser }
ingredient: { boost: 10, analyzer: classic_analyser }
brandLanguage: { boost: 10 }
persistence:
driver: orm
model: Youmiam\RecipeBundle\Entity\Product
provider: ~
listener: ~
finder: ~
repository: Youmiam\RecipeBundle\SearchRepository\ProductRepository
$boolQuery = new \Elastica\Query\Bool();
$query = new \Elastica\Query;
$queryString = new \Elastica\Query\QueryString();
$queryString->setQuery($searchText);
$queryString->setAnalyzer('classic_analyser');
$queryString->setFields(array('product.name', 'product.brand', 'product.ingredient'));
$boolQuery->addMust($queryString);
$query->setQuery($boolQuery);
$filter = new \Elastica\Filter\Term();
$filter->setTerm('brandLanguage', 'fr');
$query->setPostFilter($filter);
return $this->find($query);
最佳答案
首先要做的是在Elastica外部测试查询,您可以从Sf2 Profiler或日志中获取JSON。
接下来,确保您的文档以所需的方式在Elasticsearch中发送(在工具like Sense中执行一个简单的GET /youmiam/product/_search
请求以查看它们)。
我看到您的brandLanguage
字段正在使用标准分析器,您可以看到Elasticsearch如何通过这样的查询对它进行索引:GET /youmiam/_analyze?field=brandLanguage&text=FR
-是否存在具有确切值fr
的 token ?如果没有,将没有匹配项。
最佳做法是也将此类字段设置为“not_analyzed”。
除了代码没有问题(可以使用FilteredQuery而不是postFilter但这不是问题)之外,您还应该仔细研究索引的内容以及如何直接通过Sense查询它,然后使用Elastica对其进行翻译。
关于symfony - Fos elastica过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25895301/
我将 FOSElasticaBundle 与 symfony2 和 doctrine 2 一起使用。 我无法理解如何从搜索结果中检索实际的学说对象。我的印象是这是默认行为,但我得到了这种结果: obj
我正在使用https://github.com/ruflin/Elastica的“Elastica:elasticsearch PHP客户端”和 创建这样的查询时,无法使用订单“ASC” /“DESC
默认情况下,我的服务器上运行着一个 Elasticsearch,它运行在端口 9200 上,链接是公共(public)的,这意味着任何人都可以在任何地方插入、更新、删除任何形式的内容。我如何让它像 p
我的问题很简单。我想在 Elastica 的一个查询中组合两个过滤器,一个 filter_bool 和一个 filter_range。代码是 public function getAdvancedTw
我有一个带 Compose.io 的 Elasticsearch 集群,但我无法连接 Elastica Client。这是我的配置: $elasticaClient = new \Elasti
我只是不知道如何使用 Elastica 进行自定义查询。我有一个搜索表单来查找产品,用户可以在其中输入名称、选择类别、品牌等。 在我的产品映射中,有一个名为“category_id”的字段,其中包含您
到目前为止,我一直使用Groups批注来序列化和填充我的Elastic搜索索引,并且它仅使用“elastica”组中的字段,并且仅用于fos_elastica.yml中列出的Entities,因此运行
我正在寻找一种使用 Elastica 同时搜索多个索引的方法。 我有一个索引 products 和一个索引 user。 products 包含 {product_id, product_name, p
我正在对使用 FOS Elastica 的存储库进行单元测试,我想知道是否有人知道如何获取查询的字符串版本,而不是数组形式。这是我的存储库方法: /** * Creates quer
这是我第一次使用 Elastica 并从 ElasticSearch 查询数据 对于我来说,作为初学者,我有一个关于如何使用 Elastica 查询下面的代码的问题?: curl 'http://lo
我一直在使用 ElasticSearch 和 Elastica ( http://elastica.io/ ) 整合我们的搜索实现。 目前我无法弄清楚如何执行 count 搜索,正如 ElasticS
我正在尝试让ES QueryString匹配其中包含“和”的搜索词,但是到目前为止我尝试过的一切(尝试使用不同的分析器,tokenziers,过滤器)均无效。用MySQL的话,我想要的是: WHERE
我们有一个symfony应用程序,使用FOS \ ElasticaBundle \ Elastica-Package。一切正常。我们已经使用./app/console fos:elastica:pop
我尝试了很多事情来使用 PHP - Elastica 库 (FosElasticaBundle) 在 ElasticSearch 中执行一个简单的匹配值请求。但是没有运行。你有正确运行这种代码的想法吗
使用 PHP Elastica 库,我想知道检查 Id=1 文档是否存在的最佳方法是什么? 我是这样做的: $docPre = $elasticaType->getDocument(1); if ($
我有一个 Elastic Search 查询: { "query": { "bool": { "must": [ { "match": {"titl
我想使用elastica过滤类别中的多个匹配项: 就像是: (categories.name =“category-1” AND Categories.level = 0)AND(categories
我有 Elastica 库并在我的项目中实现了 ElasticSearch。我想从索引中删除文档。如何使用 elastica 在 elasticsearch 中按 id 删除文档?我尝试了多种解决方案
我目前正在使用FOQElasticaBundle与我的Elasticsearch服务器进行交互,但是我似乎找不到一种基于每个实体上的“ Activity ”标志来限制搜索结果的方法。是否可以通过某种方
我有一个包含许多记录的 SQL 表。当我搜索时,我不想使用所有结果,但我希望它在我想要的 id 中。 我添加了'term ' 并添加了 ' addMust ' 到 boolQuery .但是没有结果。
我是一名优秀的程序员,十分优秀!