큰 solr 인덱스가 있고 일부 필드가 올바르게 업데이트되지 않은 것으로 나타났습니다 (인덱스는 동적 임).
이로 인해 일부 필드의 “id”필드가 비어 있습니다.
이 쿼리를 시도했지만 작동하지 않았습니다.
id:''
id:NULL
id:null
id:""
id:
id:['' TO *]
빈 필드를 쿼리하는 방법이 있습니까?
감사
답변
이 시도:
?q=-id:["" TO *]
답변
한 가지주의 사항! OR을 통해 작성하려는 경우 또는 다음 형식으로 사용할 수 없습니다.
-myfield:*
하지만 당신은 사용해야합니다
(*:* NOT myfield:*)
이 양식은 완벽하게 구성 할 수 있습니다. 분명히 SOLR은 첫 번째 양식을 두 번째 양식으로 확장하지만 최상위 노드 일 때만 확장됩니다. 이것이 시간을 절약하기를 바랍니다!
답변
에 따르면 SolrQuerySyntax , 당신은 사용할 수 있습니다 q=-id:[* TO *]
.
답변
큰 색인이있는 경우 기본값을 사용해야합니다.
<field ... default="EMPTY" />
이 기본값을 쿼리합니다. 이것은 q = -id : [ “”TO *]보다 훨씬 효율적입니다.
답변
이와 같이 사용할 수도 있습니다.
fq=!id:['' TO *]
답변
SolrSharp를 사용하는 경우 부정적인 쿼리를 지원하지 않습니다.
QueryParameter.cs를 변경해야합니다 (새 매개 변수 생성).
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; }
}
그리고 QueryParameterCollection.cs 클래스에서 ToString () 재정의는 Negative 매개 변수가 true인지 확인합니다.
arQ[x] = (qp.NegativeQuery ? "-(" : "(") + qp.ToString() + ")" + (qp.Boost != 1 ? "^" + qp.Boost.ToString() : "");
매개 변수 작성자를 호출 할 때 음수 값이면. 간단한 속성 변경
List<QueryParameter> QueryParameters = new List<QueryParameter>();
QueryParameters.Add(new QueryParameter("PartnerList", "[* TO *]", ParameterJoin.AND, true));
답변
필터 쿼리 q = * : * & fq = -id : *로 수행 할 수 있습니다.