FlexLucene 5.4.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package FlexLucene --version 5.4.0
NuGet\Install-Package FlexLucene -Version 5.4.0
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="FlexLucene" Version="5.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FlexLucene --version 5.4.0
#r "nuget: FlexLucene, 5.4.0"
#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.
// Install FlexLucene as a Cake Addin
#addin nuget:?package=FlexLucene&version=5.4.0

// Install FlexLucene as a Cake Tool
#tool nuget:?package=FlexLucene&version=5.4.0

FlexLucene is a port of Java Lucene using IKVM. It uses tools like ProGuard, Mono Cecil to produce idiomatic .net code which hides most of the Java styles apparent with the IKVM generated libraries. Some of the enhancements done are:

- All the namespaces are converted from usual org.apache.lucene.* to FlexLucene.*.
- All method names are converted to use .net style naming convention that is PascalCase rather than camelCase.
- All Java hashCode methods are converted to GetHashCode.
- Proper Equals and ToString implementation for classes.
- There are certain cases when the method name cannot be converted as it is coming from a java SDK class (i.e. close method present in classes implementing Closable). In such cases we have added a helper method to the class with the proper name (PascalCase).
- Java allows usage of same name for a public field and method which is not possible in C#. Such cases are handled by renaming the field.

A lot more refinements and optimizations are planned in future.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.0

    • IKVM (>= 8.1.5717)

NuGet packages (1)

Showing the top 1 NuGet packages that depend on FlexLucene:

Package Downloads
FlexLuceneBenchmark

This is IKVM compatible lucene benchmark package. This is used in FlexSearch (http://flexsearch.net).

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.3.0 30,117 12/14/2016
6.2.0 5,513 10/10/2016
6.1.0 2,028 6/20/2016
6.0.2 1,858 5/30/2016
6.0.1 3,802 4/27/2016
6.0.0 1,930 4/11/2016
5.5.0 2,522 3/4/2016
5.4.1 2,013 2/1/2016
5.4.0 2,274 12/26/2015
5.3.1.1 2,268 10/5/2015
5.3.1 1,949 9/27/2015
5.3.0 2,076 9/1/2015
5.2.1 2,267 7/15/2015
5.1.0 2,522 4/15/2015
5.0.0 2,981 3/9/2015
4.10.2 2,527 12/7/2014
4.10.1.2-alpha 1,650 9/29/2014
4.10.1.1-alpha 1,669 9/29/2014
4.10.1 2,054 9/29/2014
4.10.0 2,031 9/5/2014
4.9.0 2,020 6/25/2014
4.8.1 1,951 5/22/2014
4.7.2 2,045 4/20/2014
4.7.0 2,168 2/27/2014
4.5.0 2,022 10/13/2013
4.4.0 2,014 8/25/2013

Go to https://github.com/FlexSearch/FlexLucene for more detailed information about the package and associated licenses.