Tagged Questions
The lucene-index tag has no wiki summary.
8
votes
1answer
335 views
zend lucene problem with the word “mortgage”
I'm using Porter Stemmer to stem the words, and here's a problem I'm running into:
Word "mortgage" is correctly stemmed to "mortgag"
Word "mortgagee" is (arguably incorrectly) stemmed to "mortgage"
...
6
votes
2answers
2k views
OutOfMemoryError: Java heap space error when start solr
I start indexing DB articles with solr, but after add about 58 million article (and about 113 GB size of disk) , i get below error message on tomcat log error
Note1: i already set Init memory pool ...
3
votes
1answer
60 views
Can Apache Solr Handle TeraByte Large Data
I am an apache solr user about a year. I used solr for simple search tools but now I want to use solr with 5TB of data. I assume that 5TB data will be 7TB when solr index it according to filter that I ...
3
votes
3answers
81 views
Impact of repeat value across multiple fields in Lucene
What would be the impact of re-indexing the same value across multiple fields in a lucene index?
The idea is that someone's first name is a part of their name and their general details. So I would ...
3
votes
0answers
23 views
Different pages to different Nutch cores (within the same domain)
How can I instruct Nutch to treat page#1 as belonging to a core and page#2 as belonging to a different core (both pages from the same domain)?
Practical situation: let's say Nutch is crawling and ...
3
votes
1answer
195 views
Missing hits on lucene index search
i index one big database overview (just text fields) on which the user must be able to search (below in indexFields method). This search before was done in the database with ILIKE query, but was slow, ...
3
votes
3answers
154 views
Lucene indexing: shared or isolated by account?
I'm evaluating Lucene to implement a global search feature in a SaaS application.
We do not want users to see the content of the other accounts so searches will always be limited by account.
Is it ...
3
votes
2answers
525 views
Full-text searching a SQL Server 2008 FileStream
I have a SQL Server 2008 database with a table that is FileStream enabled. I'll refer to this table as Tbl_FileStream for the remainder of this question.
Tbl_FileStream contains hundreds of ...
3
votes
1answer
218 views
is it possible to use negative query boost in lucene?
I want to penalize some terms in query, not to ignore them at all so "MUST NOT" operator will not work?
Is it possible to use negative query boost with SHOULD in boolean query in lucene, how does it ...
2
votes
2answers
128 views
How to extract Document Term Vector in Lucene 3.5.0
I am using Lucene 3.5.0 and I want to output term vectors of each document. For example I want to know the frequency of a term in all documents and in each specific document.
My indexing code is:
...
2
votes
1answer
34 views
Amount of Free Disk Space Required For Lucene IndexWriter.ExpungeDeletes()
I am writing an application that utilizes Lucene indexes where the user has to frequently update or delete the indexed documents.
I understand that if someone wants permanent deletion of documents ...
2
votes
3answers
260 views
Lucene custom scoring (Lucene 3.2) involves iterating through all documents in the index - fastest way?
I'm trying to implement a custom scoring formula in Lucene that has nothing to do with tf-idf (so changing just the similarity, for example, will not work).
In order to do this, I need to be able to ...
2
votes
1answer
190 views
Why lucene doesn't require composite index, but relation database does?
Lucene stores index for each field separetly. So when we perform query "fld1:a AND fld2:b" we iterate over Termdocs for first term and second term. This can't be faster. In case of database two ...
2
votes
1answer
200 views
Set default value for static method in bootstrap
this paragraph is part of 'Zend Framework In Action' book.
SearchIndexer::setIndexDirectory(ROOT_DIR . '/var/search_index');
Places_Db_Table_Row_Observable::attachObserver('SearchIndexer');
As you ...
2
votes
1answer
210 views
Using Lucene just as an inverted index
Lucene has a great capability of incremental indexing. Which is normally a pain when developing a IR system from scratch.
I would like to know if I can use low-level Lucene APIs to use it only as an ...
2
votes
2answers
323 views
Lucene Indexing/Query strategy for hyphenated words
There are many words which are hyphenated or whitespace separated but often used as one word.
Eg : Basket Ball or basket-ball can be written as basketball.
Now when i index as sentence, say : ...
2
votes
1answer
623 views
invalid characters for lucene text search
On my IndexController i have
public function buildAction()
{
$index = Zend_Search_Lucene::create(APPLICATION_PATH . '/indexes');
foreach ($this->pages as $p) {
$doc ...
2
votes
2answers
311 views
Using Lucene to query an RDBMS database
I've skimmed the docs for the Java version of Lucene, but I can't really see the top-level "this is how it works" info so far (I'm aware I need to RTFM, I just can't see the wood for the trees).
I ...
2
votes
1answer
359 views
How to parse & index different portions of an HTML page using Tika & Lucene?
I have been trying to parse & index different portions of an HTML page using Lucene & Tika. For eg. I would like to index text within Title, H1, H2, A tags of a HTML page separately and ...
2
votes
2answers
352 views
Upgrade Jackrabbit 1.3 to Jackrabbit 2.1.1
In my project I need to change Jackrabbit 1.3 to Jackrabbit 2.1.1. My work is to work for queries. Please suggest me if there are changes in index format and query format. Lucene 2.4 is used in ...
2
votes
1answer
342 views
how to get a list of all tokens from Solr/Lucene index?
I am wondering is there a way to get all tokens from particular record in Lucene/Solr index?
Thank you.
2
votes
1answer
193 views
How to define a boost factor to each term in each document during indexing?
I want to insert another score factor in Lucene's similarity equation. The problem is that I can't just override Similarity class, as it is unaware of the document and terms it is computing scores.
...
2
votes
2answers
174 views
Lucene indexing with for structured document where each text line has meta-data
Hi
I have a document structure where each text line in the document has some meta-data associated with it. The search result must show the line and the meta-data for the line.
Currently I am storing ...
2
votes
1answer
144 views
Using Lucene to Query File properties in Windows
I am planning to use Apache lucense in one of my projects, I want to index files based on the file properties (I won’t be indexing the data) and I want lucense to query the index so that I can quickly ...
2
votes
2answers
968 views
Why does 'delete document' in lucene 2.4 not work?
Hi
I want to delete a document in lucene 2.4 with java. My code is
Directory directory = FSDirectory.getDirectory("c:/index");
IndexReader indexReader = IndexReader.open(directory);
...
2
votes
2answers
914 views
Lucene: unstored fields
I just wondering whenever exist a way to read the unstored, but indexed field in Lucene index? I need because I have an index and I'm going to iterate over all documents in the index in order to ...
1
vote
1answer
20 views
Why I keep getting error at Query parser when using lucene
Hello guys I am currently parsing all the html body
for finding the document frequency of a list containing a words
and why I keep getting this error
org.apache.lucene.queryParser.ParseException: ...
1
vote
1answer
12 views
creating a lucene index to find parent based on data of children
I am trying to understand how to build a lucene index for data that has a 1 to many relation.
suppose I have a table for families with id and family name
and a table of people with id, first name, ...
1
vote
0answers
32 views
Lucene: Non-Range queries on Numeric field
We are currently using lucene 2.3.2. We pad integers with leading zeroes and index so that we can support range queries as well. We are working towards upgrading to lucene 3.4 and want to use ...
1
vote
0answers
42 views
Why My Android Program keep giving error OutOfMemory
Hello guys I have a problem with my application involving Lucene java library and I dont know what is exactly the error
here are sample of the error console
ERROR/AndroidRuntime(25909): ...
1
vote
2answers
72 views
Merge index in Lucene
Basically I am new to lucene I have created index by using 70 email documents. First index created with first 29 Documents and then the rest of the 41 documents used for another index creation.
I ...
1
vote
0answers
38 views
Lucene only finds a few hits
Im trying to do a simple search on a Domain.class entity. I have two test. The first should create the indexes and the second does a actual search. When I run the index it only runs 25-30 select ...
1
vote
3answers
176 views
Real time update of Lucene.NET index
I need to use Lucene.NET for a full text search on a mysql database. I must use InnoDB and so the Lucene is my selected search provider.
There are 2 fields that need to be indexed they are ...
1
vote
1answer
197 views
Reindexing using lucene/ deleting term from index
I hope you can help me, here is my problem:
edit: Now that I re-thought, if there is a way to delete a term from the index, it would work anyway. Is there a way to do that? if there is, there is no ...
1
vote
1answer
71 views
Problem with defining Solr_home
Hallo,
I am configuring Solr. Everything ist working fine but one thing appears to be weird to me.
I have Solr running on Tomcat. My Solr_home ist defined somewhere on my hard drive through JNDI. ...
1
vote
1answer
162 views
How do I get Average field length and Document length in Lucene?
I am trying to implement BM25f scoring system on Lucene. I need to make a few minor changes to the original implementation given here for my needs, I got lost at the part where he gets Average Field ...
1
vote
1answer
354 views
Adjust Lucene search result score by weight particular fields with same name
I'm currently using Lucene as our full text search engine. But we need sorting the search result according to a particular field.
For example, if we have the following three documents in our index ...
1
vote
3answers
490 views
Is there a HTML analyzer/tokenizer for Lucene?
I wanted to index text from html, in Lucene, what is the best way to achieve this ?
Is there any good Contrib module that can do this in Lucene ?
EDIT
Finally ended up using Jericho Parser. It ...
1
vote
2answers
83 views
How to get the results which has all the strings specified in the search query
I am a beginner in Lucene. I am writing a search engine to search our code base for certain key words. I have a requirement for which I need your help. Say I am searching for a word "Apple computers", ...
1
vote
1answer
151 views
Is lucene index created with 2.3.1 compatible with Lucene 3.0.3
We have indexed our documents with Lucene 2.3.1 and now want to move to Lucene 3.0.3 for better features. I want to know whether the index will work as is and will I be able to add more documents, ...
1
vote
1answer
249 views
Lucene - Effective text search
I have an index generated by the pdfbox api class LucenePDFDocument. As the index contains only the text contents I wish to search this index effectively. I will search the 'contents' field with the ...
1
vote
1answer
292 views
Lucene Indexing multiple documents
I have the data availability like this, few data are stored in the database and other are uploaded as the pdf/word/excel documents in the file server.
how should the Lucene index be if I wish to ...
1
vote
1answer
825 views
How to use NGramTokenizerFactory or NGramFilterFactory?
Recently, I am studying how to store and index using Solr. I want to do facet.prefix search. With whitespace tokenizer, "Where are you" will be splited into three words and indexed. If I search ...
1
vote
0answers
12 views
In-Order score and Out-of-order score
I am working with Lucene3.0.2. Can any buddy tell me what is In-order scoring and Out-Of-order scoring.
please reply.
1
vote
2answers
423 views
Numeric Range Query
I read that for handling date range query NumericRangeQuery is better than TermRangeQuery in "Lucene in action", But i couldnot find the reason. i want to know the reason behind it.
I used ...
1
vote
1answer
901 views
How to index date field in lucene
I am new to lucene. I have to index date field.
i am using Following IndexWriter constructor in lucene 3.0.0.
IndexWriter writer = new IndexWriter(FSDirectory.open(indexDir), new ...
1
vote
1answer
131 views
Indexing Adds/Changes not working using Lucene in Zend Framework
I am pretty new to programming and definitely to Zend/Lucene indexing. From what I can tell, though, my code is correct. I feel like I may be overlooking a step or something trying to upload changes ...
1
vote
1answer
84 views
Indexing columns in a single text doc using Lucene
HI All,
I am planning to index a single document, which has tab separated data as below:
Name ID email address
So when somebody searches for the 'Name' you should get ...
1
vote
2answers
303 views
Best way to create a Lucene Index with fields that can be updated frequently, and filtering the results by this field
I use Lucene to index my documents and search. Actually I have 800k documents indexed in Lucene. Those documents have some fields:
Id: is a Numeric field to index the documents
Name: is a textual ...
1
vote
0answers
509 views
Lucene.net Fuzzy Phrase Search
I have tried this myself for a considerable period and looked everywhere around the net - but have been unable to find ANY examples of Fuzzy Phrase searching via Lucene.NET 2.9.2. ( C# )
Is something ...