-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create 2024-11-26-apache-solr-filter-queries-integer-or-string-fields…
….md (#133) added a blog post about Apache solr filter queries
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
...ges/blogposts/2024-11-26-apache-solr-filter-queries-integer-or-string-fields.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Title: Apache Solr Filter Queries: Integer or String Fields? | ||
category: solr/blogposts | ||
summary: Let's explore whether to index a field in Apache Solr as a string or integer for optimal filter query performance. Written by Ilaria Petreti, Information Retrieval/Machine Learning Engineer at Sease. | ||
slug: apache-solr-filter-queries-integer-or-string-fields | ||
URL: blogposts/apache-solr-filter-queries-integer-or-string-fields.html | ||
save_as: blogposts/apache-solr-filter-queries-integer-or-string-fields.html | ||
|
||
# Apache Solr Filter Queries: Integer or String Fields? | ||
|
||
Imagine you are setting up an Apache Solr index and need to handle a field representing an ID that will be used frequently in filter queries. | ||
The key question is: how should you index this field for optimal performance? Should you use a string field type, or would an integer field type be more efficient? | ||
|
||
Let's combine the results of a local experiment with insights from online research to evaluate which option delivers better performance. Continue to the full post here: [Apache Solr Filter Queries: Integer or String Fields? | ||
](https://sease.io/2024/11/apache-solr-filter-queries-integer-or-string-fields.html) |