Luke is a development and diagnostic tool, which accesses already existing Lucene indexes and allows you to display and modify their content.

learn more… | top users | synonyms

0
votes
1answer
24 views

Is it possible to change document ranking in Lucene index?

What I would like to have is when a user searches for a specific term or phrase, I would like lucene to return a certain document as first result... Knowing that my documents are rows in a SQL server ...
0
votes
2answers
27 views

Escape LukeRequest with spaces, slashes, and colon

I am using Solr 4.1. Using LukeRequest, I want to get the number of documents with data for a specific field. The name of the field is something like http://foo.org/bar/ baz (note the space between ...
0
votes
1answer
136 views

How to to Luke support lucene 4.1

As the title suggests i am trying to view lucene indexes using luke but the current version of luke does not support lucene 4.1. Does anybody know how to update luke. I googled and found a file that ...
0
votes
2answers
51 views

Solr LukeRequest is returning an empty fieldInfo map

I am trying to inspect a solr schema using LukeRequest. I am able to browse the schema using solr admin schema browser. However when I try to retrieve it using the following piece of code it returns ...
0
votes
1answer
41 views

Solr Luke requires numTerms in order to return docs count

Using Luke in Solr, I'd like to return the total amount of docs per field, but it only returns the docs total when I have a ?numTerms set to at least 1. This slows down the Luke request significantly ...
0
votes
3answers
131 views

Show contents of Lucene index

I am trying to debug indexing documents in Lucene, and I need to see the contents of the index so I can see exactly how the documents got indexed. Allegedly Luke does this, but there is no ...
0
votes
2answers
246 views

Why can't Luke(4.0.0-ALPHA) open the Lucene4.0's index files?

I used Lucene4.0 to make index files: File directorycreate = new File(indexpath); Directory dir = new SimpleFSDirectory(directorycreate); Analyzer analyzer = ...
0
votes
0answers
33 views

Luke: this directory is closed

this directory is closed I get this error when I select the directory that contains my indexes. I'm using Luke for the first time, but it works fine if I select one of the index files directly.
0
votes
2answers
695 views

How to run Luke(Lucene tool)?

I had downloaded 'Lukeall-3.5.0' on http://code.google.com/p/luke/downloads/list It's a JAR file , but i don't know how let it work? Can somebody show me the detailed steps to run Luke? Thank you!
0
votes
0answers
69 views

Difference between Lucene analyzer and luke analyzer

I have structured content's field in which i store a path (e.g. /sites/name/nameofsector/_categories/C/category/). I have to perform a search based on this path. So I've thinked that it is unuseful to ...
1
vote
1answer
51 views

Lucene Luke. How much is the Last search time?

Luke displays results like this: Last search time: 67999 us What is 'us'? How to convert that to ms?
1
vote
1answer
243 views

Lucene.net - Crashes during indexing

My indexer, using Lucene, seems to crash during indexing operations after writing an index file approximately 16GB in size. The stack trace written to the console is repeated three times for reasons ...
2
votes
1answer
374 views

Luke reveals unknown term values for numeric fields in index

We use Lucene.net for indexing. One of the fields that we index, is a numeric field with the values 1 to 6 and 9999 for not set. When using Luke to explore the index, we see terms that we do not ...
0
votes
2answers
75 views

Cannot edit Solr fields through Luke

I am using Luke to browse some Solr indexes and when I try to "Reconstruct & Edit" a float field in my document and then "Delete old & Add" I get an exception: java.lang.NullPointerException ...
0
votes
1answer
447 views

Solr - LukeRequestHandler - Need Indexing status

I am trying to display the status of Solr Index to an admin in my application. This snippet would contain: Index Last Update Date Index Current Status (Idle | Indexing | Error) Button to Trigger ...
0
votes
1answer
179 views

Solr admin shows nothing (nutch)

I've successfully created a Solr index crawling a few pages using nutch. Querying the index using Luke I get the expected results (default field 'content'). However, when I try using the solr/admin ...
0
votes
2answers
310 views

How do I implement search for int values in hibernate search?

I'm trying to perform a search for an integer value. I have annotated the param with @Field like this: @Field(name = "confirmedCount", index = UN_TOKENIZED, store = Store.YES) public int ...
0
votes
1answer
250 views

Apache Solr topTerms (LukeRequestHandler) not giving correct token count

I am using the Solr 4 trunk build, a couple days old. According to the Wiki page for the LukeRequestHandler (first example output), we're supposed to get a count of the tokens for each or any ...
-1
votes
2answers
316 views

Can't open lucene index (Java heap space)

I want to grab some data from lucene index file. But I can't read it. I try to use Luke, but it always crashes with java.lang.OutOfMemoryError: Java heap space. Note -Xmx can't help me. I try ...
1
vote
1answer
147 views

How to get the set of terms that occur in a search result?

Given the id/url of an indexed document in solr can I get the set of terms contained/indexed for that document? This is done by Luke so I suspect http://wiki.apache.org/solr/LukeRequestHandler could ...
0
votes
2answers
669 views

Looking for Lucene index version

When I use Luke V3.3.0, it tells me that the Lucene index that I am opening is: Index version: 13172b074a7 Index format: -11 (Lucene 3.1) I am using Solr 3.3, I removed previously my folder ...
6
votes
2answers
2k views

Upgrade solr 1.4 index to solr 3.3?

I have an existing index build using apache solr 1.4. I want to use this existing index in version 3.3. As you know the index format is changed after 3.x, so how is it possible to do this? I have ...
1
vote
1answer
988 views

Luke Lucene QueryParser Case Sensitivity

In Luke, if I enter the search expression docfile:Tomatoes.jpg* the parsed query is docfile:Tomatoes.jpg*. When the search expression is docfile:Tomatoes.jpg, (no asterisk *) the parsed query is ...
4
votes
2answers
1k views

Luke Lucene BooleanQuery

In Luke, the following search expression returns 23 results: docurl:www.siteurl.com docfile:Tomatoes* If I pass this same expression into my C# Lucene.NET app with the following implementation: ...
0
votes
1answer
485 views

Solr queryparser for lucene indices?

I've created an index (using Lucene 2.9) which stores text messages. (the documents also contain some other meta data which are not indexed, just stored) I use the StandardAnalyzer for parsing these ...
0
votes
3answers
658 views

Error launching Luke(Java App) from WinXP

I downloaded luke-1.0.1.jar (Luke 1.0.1 binary without any dependencies) from http://code.google.com/p/luke/downloads/list. And I have WinXP, with latest Java 6 downloaded from Oracle/Sun web site. ...
1
vote
1answer
159 views

Katta luke integration

I m using Katta for distributed Lucene Index. Is it possible to use LUKE for Katta index, if so, how? Thanks in advance...
3
votes
2answers
3k views

How can I check Solr index using Luke

How can I check my solr index using Luke? I tried pointing to my index location (solr/core1/data/index). But I am getting the error Unknown format version: -12
0
votes
4answers
2k views

Lucene numeric range search with LUKE

I have a number of numeric Lucene indexed fields: 60000 78500 105000 If I use LUKE to query for 78500 as follows: price:78500 It returns the correct record, however if I try to return all three ...
0
votes
1answer
192 views

Lucene index deleted when opening with Luke/Indexreader

I was creating a lucene index when my indexing program crashed. The indexer had processed about 3M documents before crashing, producing a 14GB file. When I opened the index in Luke (with force ...
0
votes
1answer
277 views

What is the actual meaning of 'Rank' in Lucene when view by Luke?

I am using Luke to view a Lucene index. There is a column named 'Rank'. What is the actual meaning of it? My guess is that the Rank means number of occurrence and the larger Rank number meaning the ...
1
vote
2answers
415 views

Luke like tool in C#

Is there are Luke like tool for viewing lucene indexes in C# using the Lucene.NET api?
1
vote
2answers
807 views

Inspecting Lucene.NET index with Luke want to replicate NHibernate.Search view

I am trying to put together an index using terms, which I specify as a comma separated list. I want to replicate the display in Luke as seen here: ...
0
votes
2answers
676 views

Luke Stackwalker returns error when running, gprof works fine

I'm used to gprof for profiling my C code, but I want to start using a GUI-based Windows application such as Luke Stackwalker. gprof works perfectly fine on my binary, but Luke Stackwalker has some ...
4
votes
1answer
1k views

Sorting Lucene docs in Luke

I want to fire up a query in luke for luncene indexed document. I want to sort the results before they are fetched. What is the lucene syntax to sort the data. I don't need java/or-language-specific ...
1
vote
1answer
879 views

Adding custom Analyzers to Luke

Luke, the wonderful Lucene index viewer, is now hosted under Google code. As a default, it supports using several Lucene Analyzers out of the box. However, I would like to use it to view an index I ...