如何查询SOLR为空字段
1个回答
展开全部
如何查询SOLR为空字段?
数据库database lucene solr
我有一个大的Solr索引,我注意到字段没有被正确更新(该指数是动态的)。 这就造成了有一个空的“ID”字段的字段。 我尝试了这些疑问,但他们没有工作: id:''
id:NULL
id:null
id:""
id:
id:['' TO *]
有没有一种方法来查询空字段? 谢谢
本文地址 :CodeGo.net/221717/
-------------------------------------------------------------------------------------------------------------------------
1. 试试这个:?q=-id:["" TO *]
2. 据SolrQuerySyntax,你q=-id:[* TO *]。
3. 如果SolrSharp,它不支持负的查询。 您需要更改(创建一个新的private bool _negativeQuery = false;
public QueryParameter(string field, string value, ParameterJoin parameterJoin = ParameterJoin.AND, bool negativeQuery = false)
{
this._field = field;
this._value = value.Trim();
this._parameterJoin = parameterJoin;
this._negativeQuery = negativeQuery;
}
public bool NegativeQuery
{
get { return _negativeQuery; }
set { _negativeQuery = value; }
}
在课堂中,ToString()重写,看起来如果负为真arQ[x] = (qp.NegativeQuery ? "-(" : "(") + qp.ToString() + ")" + (qp.Boost != 1 ? "^" + qp.Boost.ToString() : "");
当你调用的creator,如果它是一个负值。简单的改变PROPERTIEList<QueryParameter> QueryParameters = new List<QueryParameter>();
QueryParameters.Add(new QueryParameter("PartnerList", "[* TO *]", ParameterJoin.AND, true));
数据库database lucene solr
我有一个大的Solr索引,我注意到字段没有被正确更新(该指数是动态的)。 这就造成了有一个空的“ID”字段的字段。 我尝试了这些疑问,但他们没有工作: id:''
id:NULL
id:null
id:""
id:
id:['' TO *]
有没有一种方法来查询空字段? 谢谢
本文地址 :CodeGo.net/221717/
-------------------------------------------------------------------------------------------------------------------------
1. 试试这个:?q=-id:["" TO *]
2. 据SolrQuerySyntax,你q=-id:[* TO *]。
3. 如果SolrSharp,它不支持负的查询。 您需要更改(创建一个新的private bool _negativeQuery = false;
public QueryParameter(string field, string value, ParameterJoin parameterJoin = ParameterJoin.AND, bool negativeQuery = false)
{
this._field = field;
this._value = value.Trim();
this._parameterJoin = parameterJoin;
this._negativeQuery = negativeQuery;
}
public bool NegativeQuery
{
get { return _negativeQuery; }
set { _negativeQuery = value; }
}
在课堂中,ToString()重写,看起来如果负为真arQ[x] = (qp.NegativeQuery ? "-(" : "(") + qp.ToString() + ")" + (qp.Boost != 1 ? "^" + qp.Boost.ToString() : "");
当你调用的creator,如果它是一个负值。简单的改变PROPERTIEList<QueryParameter> QueryParameters = new List<QueryParameter>();
QueryParameters.Add(new QueryParameter("PartnerList", "[* TO *]", ParameterJoin.AND, true));
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询