The term Lucene refers to the Java fulltext search engine library, but also to the entire eco-system that grew around it, including lucene.net, solr and zend-search-lucene.

learn more… | top users | synonyms | lucene jobs

0
votes
1answer
8 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
0answers
13 views

solr unable to search with exact value

I am using Solr 4.1.0 and I'm facing a strange issue. If I give a value to search for a field, even be it exact or involving a wildcard, it gives me 0 search results. On the other hand if I just give ...
1
vote
1answer
15 views

how to get org.apache.lucene.document.Document after fully builded but before indexed

I'd like to inject my code somewhere in Hibernate Search where Document object is fully prepared but not indexed yet. As far as I understand concept Document object is created by ...
1
vote
2answers
24 views

stop solr search after timeout

I'm using solr and search on distributed lucene indices over network. I send queries from arbiter to searchers (solr) and then get the result. Some of queries take a lot of time (more than a minute) ...
0
votes
2answers
21 views

Elasticsearch Scan&scroll with JEST API

I am currently working with JEST: https://github.com/searchbox-io/Jest Is it possible to do scan&scroll with this API? http://www.elasticsearch.org/guide/reference/api/search/search-type/ I am ...
0
votes
2answers
26 views

Store complex (i.e. label + id) meta data in SOLR document

I use SOLR to store documents having some meta data that is composed out of multiple values. Usually an id with a label. A simple example would be the name of a city and the unique id of that city. ...
0
votes
1answer
25 views

Solr boost document by friends

I am using Apache Solr to build a recommendation engine. I want to boost document that are published by the user's friends. How can I implement that?
0
votes
0answers
11 views

SOLR - There are still zombie threads that couldn't be terminated

I am using SOLR 4.3.0 on java 1.7, I am trying to incorporate custom components in to 4.3.0 version.. I am getting the below error when I test one of the custom components but not sure why.. All the ...
0
votes
0answers
28 views

Custom score in Elastic Search

I have an index, where each document represents a class, with list of students and a list of teachers. Here is the mapping: { "properties" : { "students" : { "include_in_root" : 1, ...
2
votes
1answer
32 views

How can I relate search indexes to models in MVC?

I have an MVC application which I need to be able to search. The application is modular so it needs to be easy for modules to register data to index with the search module. At present, there's just a ...
1
vote
1answer
12 views

Is there any benefit to using Lucene's UpdateDocument over Delete then Add?

Lucene has an UpdateDocument method on IndexWriter, which will delete existing document(s) and add a new one. Is there any benefit to using this method over explicitly calling DeleteDocuments and then ...
0
votes
0answers
26 views

Indexing stopping abruptly

I am facing a problem while indexing in Solr through some cron scripts(PHP). The weird part of the problem is that the scripts and indexing run perfectly when run manually through shell, but stops ...
0
votes
1answer
21 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
2answers
29 views

Elasticsearch - higher scoring if higher frequency of term

I have 2 documents, and am searching for the keyword "Twitter". Suppose both documents are blog posts with a "tags" field. Document A has ONLY 1 term in the "tags" field, and it's "Twitter". Document ...
0
votes
1answer
53 views

Is there a good indexing / search engine for Node.js?

I'm looking for a good open source (with LGPL or a permissive license) indexing engine for a node.js application, something like Lucene. I'm looking for in-process indexing and search and am not ...
0
votes
1answer
22 views

Lucene 4.3: StopwordAnalyzerBase is missing in MultifieldQueryParser

Hi i have the following dependency: <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-core</artifactId> ...
0
votes
1answer
46 views

Lucene A-Z list

I would like to have an index view with A B C D E...in order to facet all my lucene results with the alphabet. I have been googling around and I haven't found anything.. I tried with bobo facet ...
0
votes
0answers
17 views

Solr query to filter by a joined field if exists

I'm working on a special price component for an online shop. We are using solr 4.3. My task is to use the current valid product price for filtering with solr. You can define a special price for each ...
0
votes
0answers
25 views

Zend search lucene

I've a problem in indexing with Zend Search Lucene framework. PHP Version 5.3.3 Error occured while file reading. Stack Trace: #0 ...
0
votes
1answer
23 views

Elasticsearch / Lucene Misspelled Whitespace

How can I make Elasticsearch correct queries in which keyword should contain whitespace but instead typed adjacent. E.g. "thisisaquery" -> "this is a query" my current settings are: "settings": { ...
0
votes
1answer
42 views

Custom Attributes to Lucene Tokens

I am new to Lucene. I am trying to have custom attributes to tokens. I was able to get the attributes assigned to tokens. However I realise that we need to roughly have 3 files (Interface Class ...
0
votes
1answer
36 views

Solr/Lucene - equivalent of LIKE '%foo%' with scoring

What's the best way in Solr/Lucene to index a text column to behave like a SQL LIKE '%foo% where the best matches come first? "Best" in my case means exact matches first, then fewer extra characters ...
0
votes
1answer
17 views

Integrate other sources into IBM Connections search

I know there has been a short discussion about this here but I'd like to point out a specific use-case. Maybe there is other ways to accomplish this or IBM could take the use-case and evaluate if this ...
0
votes
0answers
24 views

using lucene's storing and retrieving layer only

Simply said, I want to make use of the index storing/retrieval parts of lucene to store my own version of key/value index, I want to still be able to do operations of merging, optimizing index, do ...
1
vote
0answers
22 views

Lucene prevent some fields to highlight

Im having some trouble using the lucene highlighter. I have a record that holds three fields in my lucene indexes : title, content and classification(cls). When I search the indexes using ...
0
votes
0answers
24 views

Faceted search using Lucene 4.3

I was checking on Lucene Faceted search and need some guidance. The official doc mentions about DocumentBuilder categoryDocBuilder = new CategoryDocumentBuilder(taxo); But I am unable to find ...
0
votes
0answers
14 views

Stopword removal in Mahout for lda

I am new to Mahout and topic detection. I have got the top terms in different topics in Mahout 0.7 using CVB, but my result is like this even after giving --maxDFpercent as 20 while vectorization: 0 ...
0
votes
1answer
22 views

Does Lucene store the actual documents in its index?

I am planning to use Lucene to index a very large corpus of text documents. I know how an inverted index and all that works. Question: Does Lucene store the actual source documents in its index (in ...
1
vote
0answers
36 views

Neo4j/Lucene - How to create a unique index?

I'm using Neo4j, and I wonder if it is possible to create a lucene index with a unique field. (that is, every key/value pair can be associated with only one node) For example, i want to achieve the ...
0
votes
1answer
19 views

How to assign a weight to a term query in Lucene/Solr

I am programatically constructing a BoostedQuery and I am creating two TermQuery instances which will be added to BoostedQuery instance: Query query1 = new TermQuery(new Term("body", "new")); Query ...
-1
votes
0answers
24 views

Total number of terms inside a category (Lucene)

i have created a lucene index in which documents have two fields: 1.category 2. text This means that each document have a text and a category which is in th set {A,B,C} My question is know, how can ...
0
votes
1answer
27 views

Volatile data in Solr

I have an index of documents which is distributed over several shards and replicas. The size is ca. 40 mil and I expect it to grow Problem: Users add information to these documents, which they change ...
0
votes
1answer
33 views

How to group a set of filter operators in a RavenDB query?

For filtering products in RavenDB I use a generic list of product filters - to a avoid a long switch. The product filter class looks like: public class ProductFilter { public string FilterName ...
0
votes
1answer
20 views

Using another index structure in Apache Lucene

I would like to use Lucene to write my own search engine. Because I use spatial information, I would like to try some index structures which are more suitable for spatial data. As far as I know there ...
0
votes
1answer
24 views

Add tika bridge to new defined field in FieldBridge

I have entity witch points to binary data by numeric identifier (binId). Utility class can provide binary stream form given ID. My target is to index this binary stream - usually a file. The concept ...
3
votes
1answer
30 views

How to implement Failover in Lucene?

I am currrently running a single server Lucene search engine for my platform - and would like to explore the possibility of deploying another server (mostly for failover reasons) I am using a ...
0
votes
1answer
18 views

Lucene 3.6 Index File Optimisation after Backup Restore

I am using lucene 3.6 as a search engine for a java desktop application. A directory file to used to store the lucene index. The application has a backup operation that backs up the database. The ...
-2
votes
1answer
25 views

Single word lucene indexing limit?

I've a Lucene based application and obviously a problem. When the number of indexed document is low no problems appear. When then number of documents increase, seems that no single word are indexing. ...
0
votes
2answers
26 views

Perform Lucene wildcard search

How does Lucene support wild card searches? I want to search the words starting with ox I am searching the words with ox* but its also returning the unexpected results like anti-oxide - but I don't ...
0
votes
2answers
58 views

Get total record count in Lucene or SQL SERVER Full Text Search

I have a table named Tags. Within this table I have a ID, an tag name. I would like to find total record count by group by when user type in some prefix words in a web page textbox. Same as ...
0
votes
0answers
63 views

Get the TF-IDF values of a query in the retrieved documents

IndexSearcher searcher= new IndexSearcher( DirectoryReader.open( FSDirectory.open( new File("/foo/") ) ) ); Analyzer analyzer= new StandardAnalyzer(Version.LUCENE_43); QueryParser parser= new ...
0
votes
1answer
40 views

Getting total word frequencies for a subset of documents in Solr

I'm interested in using Solr to analyze documents and to obtain word frequencies for all document matching a particular criteria. I tried termVectorComponent but I was only able to get term ...
0
votes
0answers
36 views

Object is not an indexed entity or a subclass of an indexed entity

I am doing some web app with hibernate, hibernate search, lucene and tapestry. Now, everything is OK, until I have deployed this part of code into my app. I keep getting this error Render queue error ...
0
votes
1answer
25 views

solr 4's atomic updates insight

Are atomic updates significantly faster than fetching data from a source and then making a whole new document and indexing it. Basically I would like to know how exactly solr's atomic updates work?
0
votes
1answer
43 views

Custom class using TokenFilterFactory in SOLR 4.3.0

I am trying to upgrade my custom class to support SOLR 4.3.0 (from SOLR 3.5.0) hence I am trying to update my test classes to test the changes. I got to know that we need to call the ...
0
votes
1answer
33 views

Solr 4 Spatial Search polygon vs polygon search with distance parameter

Is there a way to search for a polygon in X distance to indexed polygons? I already have indexed polygons and multipolygons in SOLR 4.2.1 index with a field type <fieldType name="location_rpt" ...
0
votes
3answers
28 views

Creating Lucene Index in a Database - Apache Lucene

I am using grails searchable plugin. It creates index files on a given location. Is there any way in searchable plugin to create Lucene index in a database?
0
votes
0answers
39 views

How to get number of matches in a document

here is my code String title = "Java web developer"; String[] splitTitle = title.split(" "); BooleanQuery query = new BooleanQuery(); for (String str : splitTitle) { Query query1 ...
0
votes
1answer
32 views

CouchDB-Lucene get distinct rows from search

I have duplicated rows in my Lucene's index and I whant to retreive only distinct datas with the search. I think that I can't build the index without the duplicated datas because they are not stored ...
0
votes
0answers
25 views

How to match person names with “'s” trailing in ElasticSearch?

I want to query the documents mentioning some persons' name, and I used matchPhraseQuery currently. It works very well when the person name could be matched exactly. However, when there exist english ...

1 2 3 4 5 85