
SolrQuery::getTermsIncludeLowerBound 메서드는 TermsQuery를 생성할 때, lower bound를 포함할지 여부를 결정하는 메서드입니다.
이 메서드는 includeLowerBound 파라미터의 default 값이 true입니다.
이 말은 TermsQuery를 생성할 때, lower bound를 포함하는 Query를 생성하는 것입니다.
만약 includeLowerBound 파라미터를 false로 설정하면, lower bound를 포함하지 않는 Query를 생성하게 됩니다.
2025-07-27 19:22