0
votes
1answer
19 views

Efficiently returning a field of all query hits in Lucene

I have a fairly large lucene index, and queries that can hit about 5000 documents or so. I am storing my application metadata in a field in lucene (apart from text contents), and need to quickly get ...
0
votes
1answer
26 views

Lucene 4.2.0 index pdf

I am using example source code from the Lucene 4.2.0 demo API: http://lucene.apache.org/core/4_2_0/demo/overview-summary.html I run IndexFiles.java to create an index from a directory of rtf, pdf, ...
0
votes
0answers
27 views

how to search word from String field in Lucene Index

How to search word from Lucene index String field ? i have lucene index with field TITLE ,containts Document titles eg:TV not working,Mobile not working i want to search particular word from title ...
0
votes
0answers
30 views

Why CPU usage close to reach to 100% when i use SOLR index the documents

We use solr as out full text searcher. we use multi cores with solr and we have approximately 5 hundred million data. we batch update our index when reaches 1000 new record without commit them because ...
0
votes
0answers
17 views

Introduction to Hadoop Index Contrib

I want to use hadoop index contrib (contrib/index), and I want to learn about how it works. But I don't know what I can start with. Is there any introduction to the structure of index contrib? Thanks ...
0
votes
1answer
43 views

Lucene 4.2 analyzer while indexing fields

I am trying to index a set of documents using Lucene 4.2. I've created a custom analyzer, that doesn't tokenize and doesn't lowercase the terms, with the following code: public class ...
0
votes
1answer
79 views

Solr / Lucene: Get all field names sorted by number of occurrences in index

I want to get the list of all fields (i.e. field names) sorted by the number of times they occur in the Solr index, i.e.: most frequently occurring field, second most frequently occurring field and so ...
0
votes
1answer
38 views

Removing unwanted items from solr autosuggester

I am trying to implement auto suggest from a huge set of paragraphs that are indexed. But I would want to filter out certain unwanted words appearing in auto suggest. For example words like "and", ...
0
votes
0answers
26 views

CLucene 2.3.2 trouble in Codeblocks when read directory with Lucene 2.9 index format

(my) CLucene version is 2.3.3 (client) Lucene files index format is 2.9.1 at this point there is an error: IndexReader* reader = IndexReader::open(index); error: screenshot tell me how I can get ...
0
votes
1answer
39 views

zend lucene close to start of field

i use zend lucene for search. I form my index with that code $doc = new Zend_Search_Lucene_Document(); $doc->addField(Zend_Search_Lucene_Field::text('word_id', $word['id'])); ...
0
votes
1answer
149 views

What is the reasoning behind the ranking of this ElasticSearch query?

I have two documents: { id: 7, title: 'Wet', description: 'asdfasdfasdf' } { id: 6 title: 'Wet wet', description: 'asdfasdfasdf' } They are almost identical except for the ...
0
votes
1answer
73 views

How do I apply 2 filters to my ElasticSearch query object?

I want to query my index, but apply 2 filters. First, the price and second the location. var qobject = { query:{ custom_score:{ query:{ ...
0
votes
1answer
49 views

In which order are the index files used to serve a search query in Lucene?

When a search query is made against Lucene, what files (as described in http://lucene.apache.org/core/old_versioned_docs/versions/3_5_0/fileformats.html) are accesses and in what order? For example, ...
0
votes
1answer
148 views

Lucene fieldNorm discrepancy between Similarity calculation and query-time value

I'm trying to understand how fieldNorm is calculated (at index time) and then used (and apparentlly re-calculated) at query time. In all the examples I'm using the StandardAnalyzer with no stop ...
0
votes
1answer
58 views

Indexing HTML files using SOLR

Am trying to index a set of HTML files using SOLR. Basic idea is to implement a site search functionality for the website developed. Am very new to Lucene and SOLR and have tried a few samples ...
0
votes
1answer
85 views

What are good inverted-index libraries to use in .NET?

I've got a .NET desktop application where I need to search large data sets. Each data set has about 100000 items containing 10 fields. The types of the fields are string, datetime, int, float and ...
0
votes
1answer
51 views

Put and Delete with CouchDB + Lucene

I'm running CouchDB (1.2.1) + Lucene on Linux (https://github.com/rnewson/couchdb-lucene/), and I have a few questions. I index everything - one index for all documents. i've got around 20.000.000 ...
0
votes
1answer
75 views

RavenDB: If I'm creating an index with Ids, should I specify any index options?

From RavenDB's documentation: The indexes each RavenDB server instance uses to facilitate fast queries are powered by Lucene, the full-text search engine. Lucene takes a Document , breaks ...
0
votes
2answers
113 views

Updating lucene index - the most popular way

I am updating lucene index onec a day. My strategy in general is: Find all objects in DB that was modified since last index generation. Create new tmp-index for these objects. (old index is stil ...
0
votes
1answer
86 views

Can't compile Lucene project with Eclipse

Here's my code: import java.io.BufferedReader; import java.io.File; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import ...
0
votes
2answers
169 views

How to resolve MergeException from massive Lucene index writing?

I have a python script to simply index unicode sentences into a lucene index. And it works fine on the 100 sentences and my 1000 sentences trial. However when i needed to index 200,000 sentences i get ...
1
vote
3answers
307 views

Lucene 4.0 IndexWriter updateDocument for Numeric Term

I just wanted to know how it is possible to to update (delete/insert) a document based on a numeric field. So far I did this: LuceneManager.updateDocument(writer, new Term("id", ...
0
votes
1answer
42 views

Using Solr to store user specified information in documents

I have an application that contains a set of text documents that users can search for. Every user must be able to search based on the text of the documents. What is more, users must be able to define ...
2
votes
1answer
333 views

Sitecore + Lucene Search FieldQuery with and empty string

I'm creating a Sitecore.Ecommerce.Search.Query using FieldQuery objects. I'm then converting the Sitecore query to a Lucene.Net.Search.Query using the LuceneQueryBuilder class. Everything with the ...
0
votes
2answers
103 views

Neo4j - index lookup issue

I was trying to set index type from exact to fulltext in neo4j shell, so i can do incasesensitive search with lucene query. So i used this command: index --set-config Destination type fulltext but ...
0
votes
2answers
280 views

How to override stopwords in lucene

I am creating a Lucene index in my folder and I'm indexing the content of txt files. I want my content without stopwords indexing, but after passing through the analyzer actually put me off the ...
0
votes
4answers
541 views

How do you configure Lucene in Sitecore to only index the latest version of an item on the master db?

I recognise this is a moot point on the web database, so this question applies to the master db... I have a custom index set up in Sitecore 6.4.1 as follows: <index id="search_content_US" ...
1
vote
1answer
45 views

xml configure for index search in hibernate

Please give me an example to index database use hibernate 3, lucense search and xml confiure. Currently i can't find equivalent xml configure tags for annotation: @DocumentId. Thanks.
0
votes
1answer
80 views

What exactly are Lucene's multi field indexes

I am trying to understand what exactly is going on in the background. Given the simplified Model of an Inverted Index (forget about positions and scores): For each word there is a sorted list of ...
1
vote
0answers
238 views

MySQL performance - can Sphinx / Lucene / Solr help in this case?

I have been using MySQL (InnoDB) for a social network like site and soon figured that in some cases more complex queries can get very slow. However, also very simple queries, e.g. when you have a ...
0
votes
1answer
36 views

lucene sort friend search result by recent contact activity

I use Lucene to index user list in my application. How can I sort the user search result by recent activity Example: Anna has just sent an email to Peter. So when Anna Search with character "P" Peter ...
0
votes
1answer
75 views

Lucene index searching

I am using Lucene indexing for the first time. I have some documents in Hindi and English and I create index on the content of document.When I search the index I get result from all the documents even ...
0
votes
1answer
65 views

Which subfolders from data folder solr do replicate?

I want to add additional data to solr data folder, not sure how to force solr to replicate it. Seems like by default solr only replicate index/spellcheck folders.
0
votes
3answers
313 views

Sitecore System Lucene Index for custom queries

I have been using Sitecore query and FAST query for some sections of the website. But with growing content these queries have gotten slow and I'd like to implement Lucene querying for content to speed ...
1
vote
2answers
128 views

Elasticsearch multindex performance

I'm thinking about moving from one index to day-based indexes (multi-index) in our Elasticsearch cluster with huge number of records. The actual question is how it can affect the performance of ...
0
votes
1answer
77 views

Solr Lucene - disable ordering by date and time the document was indexed?

Please could I ask for some help in the order my search results are returned? It seems to me that when a document is re-indexed, it appears at the end of the search results. I'm ordering by 'score ...
3
votes
1answer
44 views

apache lucene tokens

I started experimenting Apache Lucene Core 4 and my question is... Lets asume that I created Index of some text and it is stored in a Field with name "context" Is it posible to get the list of tokens ...
1
vote
0answers
58 views

Delete documents in Lucene that do no exist

I have a Lucene index created, and I would like to know how to delete the file index entries that do not already exist on the computer. Is there any way from Lucene or have to go file by file opening ...
0
votes
1answer
122 views

How to create a Lucene in-memory index at webapp deployment time

I have a web java/jsp application running on Apache Tomcat server. In this web application I have used lucene, to index and calculate similarity between some PDF documents(PDF documents are in the ...
0
votes
0answers
95 views

Lucene Join Query between multiple Indices

I have two lucene indices. Suppose a document in the first Index contents fields like: name:....., filename: ......, fullpath: ........, etc. and the second Index contents fields like: name: ...
3
votes
1answer
381 views

Solr Index linear growth - Performance degradation

We have 4 shards with 14GB index on each of them Each shard has a master and 3 slaves(each of them with 32GB RAM) We're expecting that the index size will grow to double or triple in near future. So ...
1
vote
1answer
101 views

grails searchable - avoid index for embedded entity

I'm playing around with searchable and ran into a problem I can't solve myself. There are two entities: class Activity { static searchable = { only = ["title", "place"] } String ...
0
votes
1answer
780 views

incremental indexing lucene

I'm making an application in Java using Lucene 3.6 and want to make an incremental rate. I have already created the index, and I read that you have to do is open the existing index, and check each ...
0
votes
0answers
60 views

How to use QueryParser as a filter on objects?

I have a large collection of objects in memory and I would like to be able to have users to query on them using lucene's powerful query parser. I would prefer to just to use the query over the objects ...
0
votes
1answer
74 views

Best practise closing Lucene index

I currently have a Seam component which is in my session. This component is holding a custom "Lucene object" (private attribute) which opens a Lucene index in the constructor. When I want to search, I ...
0
votes
2answers
174 views

How do I use Lucene to index and search structure text files?

This is the first time I use Lucene, and I have a text file like this : id,name,address,hobby 1,namm1,address1,football 2,namm2,address2,football 3,namm3,address3,football 4,namm4,address4,football ...
0
votes
1answer
61 views

How to retrieve search results from two fields in lucene index, giving one query?

Suppose I search for a query in Field A, and I want to retrive the corresponding fields B and C from my index, how should I go about it? I am using Lucene 3.6.0.
0
votes
1answer
66 views

Read meta-data of an existing Lucene index

Is it possible to find out which analyzers/tokenizers were used on a field, by reading an existing Lucene index? If yes, please let me know how. Looking for some kind of meta data that might be stored ...
1
vote
2answers
282 views

Searching Sentences in Lucene and getting matched terms

I have an application that requires me to index a few gigabytes of sentences(about 16million lines). Currently my search works in the following way. My search terms is usually revolving around a ...
0
votes
1answer
192 views

RAMDirectory Lucene

I am trying to index text files and using the RAMDirectory for fast indexing and was wondering if there is a way to clear the previous RAMDirectory to prevent duplicates?

1 2 3