Foundatio.Parsers.LuceneQueries 7.17.10

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Foundatio.Parsers.LuceneQueries --version 7.17.10
                    
NuGet\Install-Package Foundatio.Parsers.LuceneQueries -Version 7.17.10
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Foundatio.Parsers.LuceneQueries" Version="7.17.10" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Foundatio.Parsers.LuceneQueries" Version="7.17.10" />
                    
Directory.Packages.props
<PackageReference Include="Foundatio.Parsers.LuceneQueries" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Foundatio.Parsers.LuceneQueries --version 7.17.10
                    
#r "nuget: Foundatio.Parsers.LuceneQueries, 7.17.10"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Foundatio.Parsers.LuceneQueries&version=7.17.10
                    
Install Foundatio.Parsers.LuceneQueries as a Cake Addin
#tool nuget:?package=Foundatio.Parsers.LuceneQueries&version=7.17.10
                    
Install Foundatio.Parsers.LuceneQueries as a Cake Tool

FoundatioFoundatio

Build status NuGet Version feedz.io Discord

A lucene style query parser that is extensible and allows additional syntax features. Also includes an Elasticsearch query_string query replacement that greatly enhances its capabilities for dynamic queries.

Getting Started (Development)

This package can be installed via the NuGet package manager. If you need help, please contact us via in-app support or open an issue. We’re always here to help if you have any questions!

  1. You will need to have Visual Studio Code installed.
  2. Open the Foundatio.Parsers.sln Visual Studio solution file.

Using LuceneQueryParser

Below is a small sampling of the things you can accomplish with LuceneQueryParser, so check it out! We use this library extensively in Exceptionless!

In the sample below we will parse a query and output it's structure using the DebugQueryVisitor and then generate the same exact query using the parse result.

using Foundatio.Parsers.LuceneQueries;
using Foundatio.Parsers.LuceneQueries.Visitors;

var parser = new LuceneQueryParser();
var result = parser.Parse("field:[1 TO 2]");
Debug.WriteLine(DebugQueryVisitor.Run(result));

Here is the parse result as shown from the DebugQueryVisitor

Group:
  Left - Term:
      TermMax: 2
      TermMin: 1
      MinInclusive: True
      MaxInclusive: True
      Field:
          Name: field

Finally, lets translate the parse result back into the original query.

var generatedQuery = GenerateQueryVisitor.Run(result);
System.Diagnostics.Debug.Assert(query == generatedQuery);

Query Syntax

Aggregation Syntax

Features

  • Lucene Query Syntax Parser
  • Field Aliases (static and dynamic)
  • Query Includes
    • Define stored queries that can be included inside other queries as macros that will be expanded
  • Validation
    • Validate query syntax
    • Restrict access to specific fields
    • Restrict the number of operations allowed
    • Restrict nesting depth
  • Elasticsearch
    • Elastic query string query replacement on steriods
    • Dynamic search and filter expressions
    • Dynamic aggregation expressions
      • Supported bucket aggregations: terms, geo grid, date histogram, numeric histogram
        • Bucket aggregations allow nesting other dynamic aggregations inside
      • Supported metric aggregations: min, max, avg, sum, stats, extended stats, cardinality, missing, percentiles
    • Dynamic sort expressions
    • Dynamic expressions can be exposed to end users to allow for custom searches, filters, sorting and aggregations
      • Enables allowing users to build custom views, charts and dashboards
      • Enables powerful APIs that allow users to do things you never thought of
    • Supports geo queries (proximity and radius)
      • mygeo:75044~75mi
        • Returns all documents that have a value in the mygeo field that is within a 75 mile radius of the 75044 zip code
    • Supports nested document mappings
    • Automatically resolves non-analyzed keyword sub-fields for sorting and aggregations
    • Aliases can be defined right on your NEST mappings
      • Supports both root and inner field name aliases

Thanks to all the people who have contributed

contributors

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Foundatio.Parsers.LuceneQueries:

Package Downloads
Foundatio.Parsers.ElasticQueries

A lucene style query parser that is extensible and allows additional syntax features.

Foundatio.Parsers.SqlQueries

A lucene style query parser that is extensible and allows additional syntax features.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
7.17.14 5,230 1/31/2025
7.17.13 4,508 1/13/2025
7.17.12 4,015 11/26/2024
7.17.11 5,181 9/27/2024
7.17.10 4,574 9/4/2024
7.17.9 539 8/31/2024
7.17.8 171 8/31/2024
7.17.7 28,729 3/27/2024
7.17.6 17,765 1/5/2024
7.17.4 18,074 6/23/2023
7.17.3 37,270 1/1/2023
7.17.2 34,523 5/18/2022
7.17.1 7,852 3/10/2022
7.17.0 1,658 3/7/2022
7.16.2 10,146 1/21/2022
7.16.1 1,918 1/21/2022
7.16.0 1,850 1/20/2022
7.15.1 4,365 10/15/2021
7.15.0 2,074 10/11/2021
7.13.0 14,803 7/8/2021
7.12.0 37,102 4/13/2021
7.11.0 776 2/18/2021
7.10.3 26,885 2/1/2021
7.10.2 5,043 1/15/2021
7.10.1 744 1/15/2021
7.10.0 10,384 11/17/2020
7.9.0 4,808 9/16/2020
7.9.0-beta5 1,034 9/15/2020
7.9.0-beta4 516 9/15/2020
7.9.0-beta3 1,240 8/28/2020
7.9.0-beta2 946 8/27/2020
7.9.0-beta1 1,002 8/25/2020
7.8.0-beta9 2,707 8/3/2020
7.8.0-beta8 1,781 7/29/2020
7.8.0-beta7 1,319 7/9/2020
7.8.0-beta12 1,006 8/10/2020
7.8.0-beta11 1,091 8/6/2020
7.8.0-beta10 654 8/5/2020
7.7.0-beta6 591 7/2/2020
7.7.0-beta5 1,259 6/20/2020
7.7.0-beta4 1,071 6/14/2020
7.7.0-beta3 1,204 6/6/2020
7.7.0-beta2 1,190 5/26/2020
7.6.2 23,128 3/25/2020
7.6.1 882 3/25/2020
7.6.0 3,458 2/27/2020
7.5.4 2,857 2/13/2020
7.5.3 1,839 2/10/2020
7.5.2 2,593 1/28/2020
7.5.1 2,517 1/17/2020
7.5.0 1,555 1/16/2020
7.5.0-rc1 629 1/14/2020
7.0.497 16,784 6/27/2019
5.6.521 4,048 9/19/2019
5.6.517 947 9/19/2019
5.6.508 3,138 8/30/2019
5.6.477 9,687 4/16/2019
5.6.445 2,728 3/15/2019
5.6.443 1,725 3/14/2019
5.6.441 1,703 3/14/2019
5.6.438 6,090 2/22/2019
5.6.436 1,013 2/22/2019
5.6.429 7,233 1/30/2019
5.6.398 8,531 11/9/2018
5.6.396 1,863 11/9/2018
5.6.389 9,994 9/7/2018
5.6.386 4,296 5/9/2018
5.6.365 3,538 11/30/2017
5.0.353 6,119 9/14/2017
5.0.350 1,474 9/14/2017
5.0.348 3,176 8/17/2017
5.0.339 1,429 7/24/2017
5.0.336 2,029 6/23/2017
5.0.323 1,304 5/5/2017
5.0.302-pre 922 3/17/2017
5.0.301-pre 919 3/16/2017
5.0.300-pre 935 3/16/2017
5.0.299-pre 894 3/16/2017
5.0.295-pre 886 3/16/2017
5.0.293-pre 1,022 3/11/2017
5.0.292-pre 945 3/11/2017
5.0.274-pre 2,158 3/5/2017
5.0.273-pre 2,170 2/28/2017
5.0.271-pre 1,576 2/28/2017
5.0.270-pre 989 2/28/2017
5.0.268-pre 1,101 2/20/2017
5.0.266-pre 6,148 2/16/2017
5.0.263-pre 1,657 2/15/2017
5.0.261-pre 1,573 2/15/2017
5.0.260-pre 1,573 2/14/2017
5.0.259-pre 1,648 2/14/2017
5.0.258-pre 1,064 2/8/2017
5.0.255-pre 1,025 2/7/2017
5.0.254-pre 2,187 2/6/2017
5.0.253-pre 1,480 2/6/2017
5.0.252-pre 1,484 2/4/2017
5.0.251-pre 1,491 2/3/2017
5.0.250-pre 992 2/3/2017
5.0.248-pre 989 2/2/2017
5.0.246-pre 2,436 1/30/2017
5.0.245-pre 1,022 1/29/2017
5.0.244-pre 1,010 1/28/2017
5.0.243-pre 998 1/27/2017
5.0.242-pre 1,019 1/27/2017
5.0.241-pre 993 1/24/2017
5.0.239-pre 1,009 1/19/2017
5.0.238-pre 1,013 1/19/2017
5.0.237-pre 1,018 1/19/2017
5.0.235-pre 1,007 1/19/2017
5.0.234-pre 997 1/17/2017
5.0.233-pre 4,541 1/12/2017
5.0.232-pre 984 1/9/2017
5.0.230-pre 1,050 1/9/2017
5.0.229-pre 1,015 1/6/2017
5.0.226-pre 1,056 1/5/2017
5.0.224-pre 1,030 1/5/2017
5.0.223-pre 2,836 12/29/2016
5.0.222-pre 1,591 12/28/2016
5.0.220-pre 1,043 12/22/2016
5.0.219-pre 2,813 12/16/2016
5.0.216-pre 1,013 12/15/2016
5.0.214-pre 1,624 12/13/2016
5.0.213-pre 2,451 12/13/2016
5.0.212-pre 1,035 12/13/2016
5.0.211-pre 2,404 12/10/2016
5.0.209-pre 1,092 12/9/2016
5.0.205-pre 1,622 12/6/2016
5.0.203-pre 1,603 12/6/2016
5.0.202-pre 1,052 12/6/2016
5.0.199-pre 1,048 12/5/2016
5.0.198-pre 1,045 12/5/2016
5.0.197-pre 1,074 12/2/2016
5.0.196-pre 1,069 11/30/2016
5.0.193-pre 1,599 11/29/2016
5.0.190-pre 1,091 11/29/2016
5.0.189-pre 2,060 11/29/2016
5.0.186-pre 1,627 11/29/2016
5.0.185-pre 1,072 11/29/2016
5.0.183-pre 1,076 11/29/2016
5.0.182-pre 1,067 11/29/2016
5.0.181-pre 1,580 11/28/2016
5.0.180-pre 1,044 11/28/2016
5.0.177-pre 1,044 11/28/2016
5.0.175-pre 997 11/28/2016
5.0.174-pre 1,072 11/28/2016
5.0.173-pre 1,081 11/28/2016
5.0.171-pre 1,043 11/26/2016
5.0.170-pre 1,571 11/25/2016
5.0.169-pre 1,615 11/23/2016
5.0.167-pre 1,618 11/18/2016
5.0.166-pre 1,081 11/18/2016
5.0.159-pre 1,029 11/17/2016
2.0.153-pre 1,168 11/16/2016
2.0.150-pre 1,508 11/15/2016
2.0.149-pre 1,017 11/15/2016
2.0.148-pre 1,023 11/15/2016
2.0.140-pre 1,018 11/9/2016
2.0.137-pre 986 11/9/2016
2.0.135-pre 2,504 10/26/2016
2.0.105-pre 1,944 10/5/2016
2.0.104-pre 1,038 10/5/2016
2.0.103-pre 1,027 10/5/2016
2.0.101-pre 2,364 10/3/2016
2.0.100-pre 1,009 10/3/2016
2.0.99-pre 1,025 9/30/2016
2.0.98-pre 1,027 9/30/2016
2.0.95-pre 1,017 9/28/2016
2.0.94-pre 1,080 9/27/2016
1.0.318 1,362 5/4/2017
1.0.305 4,376 3/17/2017
1.0.269 4,658 2/20/2017
1.0.267 4,231 2/16/2017
1.0.264 1,392 2/16/2017
1.0.231 4,644 1/9/2017
1.0.228 2,683 1/6/2017
1.0.227 1,424 1/6/2017
1.0.210 4,228 12/9/2016
1.0.207 1,481 12/8/2016
1.0.204 2,108 12/6/2016
1.0.195 2,143 11/30/2016
1.0.192 1,487 11/29/2016
1.0.187 2,246 11/29/2016
1.0.184 1,477 11/29/2016
1.0.176 2,138 11/28/2016
1.0.168 2,730 11/18/2016
1.0.165 1,398 11/18/2016
1.0.164 1,385 11/18/2016
1.0.147 3,789 11/15/2016
1.0.143 1,398 11/10/2016
1.0.142 1,411 11/10/2016
1.0.141 1,389 11/9/2016
1.0.138 1,365 11/9/2016
1.0.136 1,560 11/9/2016
1.0.131 2,160 10/21/2016
1.0.130 1,442 10/21/2016
1.0.129 2,721 10/21/2016
1.0.128 2,114 10/21/2016
1.0.127 1,439 10/21/2016
1.0.126 1,415 10/21/2016
1.0.125 2,059 10/21/2016
1.0.124 2,130 10/20/2016
1.0.123 1,469 10/19/2016
1.0.122 1,383 10/19/2016
1.0.120 1,390 10/19/2016
1.0.119 2,107 10/18/2016
1.0.115 1,418 10/10/2016
1.0.114 1,374 10/10/2016
1.0.108 2,881 10/7/2016
1.0.102 2,169 10/3/2016
1.0.97 2,029 9/30/2016
1.0.96 1,405 9/30/2016
1.0.91 2,284 9/23/2016
1.0.87 5,397 9/20/2016
1.0.86 3,229 9/16/2016
1.0.85 1,395 9/16/2016
1.0.84 1,962 9/15/2016
1.0.82 4,428 9/13/2016
1.0.81 1,488 9/13/2016
1.0.80 1,982 9/13/2016
1.0.78 1,230 9/13/2016