How do you run Lucene on .net?
问题 Lucene is an excellent search engine, but the .NET version is behind the official Java release (latest stable .NET release is 2.0, but the latest Java Lucene version is 2.4, which has more features). How do you get around this? 回答1: One way I found, which was surprised could work: Create a .NET DLL from a Java .jar file! Using IKVM you can download Lucene, get the .jar file, and run: ikvmc -target:library <path-to-lucene.jar> which generates a .NET dll like this: lucene-core-2.4.0.dll You can