Apache Solr is an open source search server based on the Lucene Java search library.

learn more… | top users | synonyms (2)

0
votes
0answers
15 views

How to mitigate query performance impact of replication in SOLR

I have about 4M doc index in SOLR (4.1). One master rebuilds an index (it doesn't get any real traffic) once a day and replication is done to two slaves. During the replication, I found that some ...
0
votes
1answer
41 views

Solr fullname search

I'm trying to set up a fullname search in Solr. Until now I thought my work was fine until I've found something strange, and I can't figure out how to correct it. So I want to be able to do searches ...
0
votes
2answers
18 views

Solr Facet Search-Spell check

I'm usign Solr facet search on a column of database. It successfully returns the data: <lst name="facet_counts"> <lst name="facet_queries"/> <lst name="facet_fields"> ...
1
vote
1answer
54 views

delta import handler not working properly

I followed the steps mentioned @: http://wiki.apache.org/solr/DataImportHandler I also tried other solution from stackoverflow however still it is not working. Problem is: I have configured ...
0
votes
1answer
21 views

Solr - Issue with getting highlight with hl.maxAnalyzedChars = -1

I am facing one weird issue while setting hl.maxAnalyzedChars to -1 to fetch highlight for some random records, for other records its working fine. Below is my solr query ...
0
votes
1answer
20 views

django haystack indexes nothing

I am using Ubuntu 13 and Django 1.4.5, I have installed solr, tomcat6, (sudo apt-get install solr-tomcat) djangohaystack etc. and they seem work fine. but i cannot make the index. search_indexes.py ...
2
votes
1answer
31 views

Apache SocketFactory compatible with java.net SocketFactory?

I'm making a request using Apache's DefaultHttpClient and I need to override the SSL call so that I can attach a custom SSLSocketFactory (essentially a client cert) to it. To do this, I create a new ...
0
votes
0answers
32 views

Solr : SolrQueryResponse

Well I have seen a lot people adding results to SolrQueryResponse object using rsp.add("response",result). Here 'rsp' is SolrQueryResponse object , "response" is string (obviously) , result is ...
0
votes
1answer
31 views

Solr lucene search only first word in a sentence - need query

I am searching data which matches only that sentence which starts with the search key. Ex: search key "what" result : DESIRED ONE **what** is your name **what** are you doing **what** is that ...
0
votes
0answers
14 views

boost doc in data import handler using xml

Hello I want to boost doc using field in my xml doc. Normalny I was using database query to index content but now I need to use xml. Using db query I would do something like this ...
0
votes
1answer
19 views

Solr highlights shorter similar words

Looking for some help in pointing me in the right direction. I am new user to SOLR and am using solrj to pull data back from the search engine. Everything seems to work fine except the highlighting ...
0
votes
1answer
48 views

Integrating Solr using PHP

I wanted to use Solr in order to enable a Learning Management Service package have search features. I read and tried out the official tutorial from here: ...
0
votes
2answers
23 views

How to mark AND as a query word not query operator in SOLR

In my solr use case I don't have any stopwords. I found that AND is considered as a query operator though. I placed + in front of AND and now it is not considered as a word any more. Is that the right ...
1
vote
0answers
27 views

SOLR unknown field type, Rails / Capistrano

Am trying to deploy solr based search using capistrano, am receiving errors while reindexing, RSolr::Error::Http (RSolr::Error::Http - 400 Bad Request Error: ...
0
votes
0answers
30 views

not getting indexing from database in solr

i registered the handler under solr-config.xml as <requestHandler name="/dataimport" class="org.apache.solr.handler.dataimport.DataImportHandler"> <lst name="defaults"> <str ...
0
votes
1answer
26 views

php search request to Solr

I'm a newbie and I am trying to make a web front end search UI that searches from an already implemented Solr indexes. Does anyone know a good tutorial on how to make a php search request using HTTP ...
1
vote
0answers
38 views

Giving relative weight to items in recommendation engine

I am trying to build an item-item recommendation engine. I have classify my item in different categories.But I am facing problem as how to give weight to each category taking other categories in ...
0
votes
2answers
23 views

How to import solr API to my java class

import org.apache.solr.client.solrj.SolrServerException; import org.apache.solr.client.solrj.impl.CommonsHttpSolrServer; import org.apache.solr.common.SolrInputDocument;
0
votes
1answer
33 views

Problems communicating between Apache Solr and Magento Enterprise - only “pings” in the Solr log

I recently set up an Apache Solr 1.4.1 server to work with Magento Enterprise 1.9. The setup seems to work fine, and Magento reports that it can successfully conntect to Solr. I can perform Solr ...
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 ...
-2
votes
0answers
20 views

Looking for Apache Solr Support [closed]

We just looking for Apache Solr Support. Does anyone knows about any Best organization which give support for Apache Solr? Need suggestion regarding the best vendor who can provide the support for ...
0
votes
0answers
24 views

How does fulltext solr search really work with sunspot?

Ok in my Style model I've got things setup like this searchable do text :full_name end However when I run Style.search { fulltext 'Monkey' }.results I get an empty result set. When I run ...
0
votes
2answers
33 views

Solr on Tomcat not able to post xml files without error field unknown

I just installed Solr on Ubuntu with the following tutorial: http://feinan.com/2012/05/19/how-to-install-solr-3-6-0-on-ubuntu-12-04-lts/ which got me up and running fine. But when I want to post a ...
3
votes
1answer
80 views

Solr DataImportHandler - indexing multiple, related XML documents

Let's say I have two XML document types, A and B, that look like this: A: <xml> <a> <name>First Number</name> <num>1</num> </a> ...
1
vote
0answers
37 views

How to index html, css, and javascript using solr

Users of CodePen submit html/css/javascript each time they save a pen. We're setting up Solr search and I'd like to know if any work has been done to properly tokenize html/css/js for optimal ...
0
votes
1answer
49 views

Sunspot Solr Rails geosearch is failing with undefined method error

I'm new to using the Sunspot gem. I have it installed and correctly indexing and querying. However, I am now trying to bound the search parameters by including geo search. My database table that is ...
0
votes
1answer
39 views

Solr searching with /terms

I have a PHP application that uses a SOLR database. The problem appeared when I am doing a /terms request (terms doc) So the parts of the document that interest us are poi: "Bistriţa", ... text: [ ...
0
votes
2answers
52 views

Autocomplete using Solr & Spring - issue with multiple words

I have indexed a database of locations using Spring Data Solr. I have the following fields: <field name="id" type="string" indexed="true" stored="true" required="true" multiValued="false" /> ...
0
votes
1answer
25 views

Own filter Solr

have long since I have been researching, but so far have not found anything to solve my problem. I'm trying to create a filter for Solr, which add a TOKEN. For example, the entry is "Football" and the ...
0
votes
1answer
31 views

What I need to write in schema.xml for searching in two or more fields in Solr?

I'm new in Solr. I've indexed 3 fields from MySql to solr. Id, first_name, last_name. I want to search in first_name and last_name. In schema.xml I wrote: <fields> <field name="id" ...
2
votes
0answers
41 views

Solr integration with multiple store multiple language e-commerce system

this is an architecture related question and not specifically programming related issue. We are working on a solr integration with our e-commerce shop. We're having a multiple store using the same ...
0
votes
1answer
28 views

Get JSON facet_queries from Solr using JS

I am using Solr facets to split queried documents based on their category and their published date. I managed to write a query that returns what I want in JSON format. The result is something like ...
0
votes
1answer
46 views

concatination string search in solr

i am searching for medical related terms. Search fields are description, title, keywords, category. Search key by user "brain surgery" When i search with the above key. As per the schema it ...
1
vote
0answers
37 views

Can Solr boost on “numField” when doing a group query

Using Solr 4.0+. I have a parent-child relationship in SQL between Stores and Products. We want to write a query that says "find all Stores where the storename, address, or city match 'xxx'. Or ...
0
votes
1answer
38 views

What is wrong with this Sunspot Solr setup?

I am using sunspot to search my local db. After adding the gems, running the generate command, and booting up the solr server I do the following: class Style < ActiveRecord::Base ...
0
votes
0answers
23 views

Solr dataimporthandler, unable to use entity timestamps

I am using solr's data import handler to bring in data from several sources, using multiple entities. When I run an import the dataimport.properties file has multiple timestamps for each individual ...
0
votes
0answers
48 views

SOLR4.3 Upgrade from 3.2.0 on Ubuntu 12.04

How do I point a SOLR4.3 install to Tomcat6? The install went fine, the problem is I don't know where to look to point the new installation to the current version of Tomcat. Any ideas?
2
votes
1answer
28 views

In solr how do you maximize variability within a page of a result set?

This is for a product search where we want to show a variety of brands in the search results (24 per page). Ideally we would limit it to each item on the page must have a unique brand id, unless ...
0
votes
1answer
39 views

Solr Boolean query on multi-valued field in filter query

We have a multi-valued indexed field named tags. We want to find all documents that meet one of the following conditions via a filter query: if tag flagged is present, then tag safe should also be ...
2
votes
0answers
37 views

ColdFusion 10 SOLR install

I am running Coldfusion 10 (10,0,9,284568) on Win7 64bit developer instance. Initially we had no need for SOLR, so we did not include it in the original ColdFusion install. However, we now have ...
0
votes
1answer
36 views

Solr: How to break query on 'AND' and 'OR'?

I am writing customize request handler and I have such a requirements that I have to break the query into multiple clauses. Suppose I am getting query: I live in America and love pizza or play ...
0
votes
0answers
14 views

Using an EmbeddedSolrServer in SolrCloud case

I am currently building an application that is load-balanced (externally via Apache), which starts an Solr 4.2 instance (or more specifically a CoreContainer). I want to set up a SolrCloud that spans ...
1
vote
2answers
57 views

How to filter URLs in Nutch 2.1 solrindex command

How do I prevent some pages I fetched from getting indexed when I run a bin/nutch solrindex command? I would like to define and use a regex-urlfilter.txt like I did at fetch time. I'm using Nutch 2.1 ...
0
votes
0answers
14 views

Configure Solr Suggester to return same phrase as query

I'm using the Suggester component in Solr, and if I search for "iPhone 5" the suggestions never give me the same phrase, that is "iPhone 5." Is there any way to alter this behaviour?
0
votes
0answers
25 views

Solr - How to get Term Vector Information on Distributed Search

I am using distributed query to fetch records. Distributed Search Document on wiki says , Distributed Search support Term Vector. but I m getting error while querying. Not sure if I am doing anything ...
0
votes
1answer
51 views

Querying Solr Multi valued fields using range

I have an oddity in Solr with multi valued fields which I can seem to replicate repeatedly. I have a set of titles which have a field called special_offer_type. This field is of the type: [ "5", ...
1
vote
1answer
616 views

Solr 4.3 Tomcat6 Ubuntu installation exception

I have big problems installing Solr 4.3 under Ubuntu 12.04. Firstly i installed tomcat. I can access tomcat via browser on localhost:8080. Into "Tomcat Web Application Manager" i try to install Solr ...
0
votes
0answers
18 views

Solr highlighting with Phrase query not working as expected

I have a strange problem. I am running a highlighting query with following data { id: 1, fld: 'a word1 a word2 a word3 a word4 a word5' } The query, q=fld:"a word1 a word2 a ...
-1
votes
0answers
16 views

Magnolia CMS working With Solr module [closed]

. Hi Folkes, I'm working with Magnolia 4.5 and Solr 3.5. I'm trying to install and configure the Solr Modudule for Magnolia but I got some exceptions while using it. For exemple I got that one: ...
0
votes
1answer
28 views

Solr: Querying 2 related multivalued fields of different types

I have 2 multivalued fields in my product doc :- Features Features_Score Features field (type: string) has multiple features for the product. Each feature has a string value. Features_Score (type ...

1 2 3 4 5 122