0
votes
1answer
25 views
How to crawl, process and index social media profiles?
For a new tech-startup venture we want to set up a so called "Social Crawler". With this piece of software we want to give clients the ability to search for potential employees. The results (E.g. ...
-2
votes
0answers
9 views
how to install apache solr in php [closed]
I want to install Solr into the PHP but not getting the steps how to integrate it.
I have gone through this link http://www.php.net/manual/en/solr.installation.php
2
votes
1answer
48 views
+50
Search a multi-valued field with a self join
I have the following (simplified) solr schema:
<schema name="documents" version="1.1">
<uniqueKey>id</uniqueKey>
...
<fields>
<field
name="id"
...
0
votes
2answers
23 views
Understanding solr's schema.xml
I'm a total beginner in solr. I've installed it and started working on its schema.xml file. One particular code snippet is as follow:
[schema.xml comes in the example/solr/collection1/conf directory]
...
0
votes
1answer
18 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
45 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
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
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
2answers
68 views
Differences between search tools - Solr, Bing and Google? [closed]
I am interested to know how solr search differs from what Bing and Google Search APIs offer?
0
votes
1answer
32 views
'function' object has no attribute 'objects' Django
I am using haystack and solr for searching but i am getting a error 'function' object has no attribute 'objects'
This is my search_indexes.py
from haystack import indexes
from haystack.indexes ...
0
votes
1answer
29 views
What is the meaning of “must match” in Solr?
I have an requirement to modify the must match parameter in Solr.
<str name="mm">
2<-1 5<-2 6<50%
</str>
I'm not able to understand the logic behind this syntax.
0
votes
1answer
30 views
solr index for multi-valued multi-type field
I am indexing a collection of xml document with the next structure:
<mydoc>
<id>1234</id>
<name>Some Name</name>
<experiences>
<experience years="10" ...
1
vote
0answers
36 views
Sunspot search in production Ruby on Rails 3.2
I install solr-tomcat on my production server, and start this, replace my conf/schema.xml & conf/solrconfig.xml from application but it does no work.
In the :8080/solr/admin/ i have HTTP Status ...
0
votes
0answers
18 views
Apache Solr - SolrDispatchFilter null:java.io.FileNotFoundException
I'm using Apache Solr to index rich documents. It was working fine but suddenly I'm getting the following errors every time I try to index a document:
11:32:16 SEVERE SolrDispatchFilter ...
1
vote
1answer
36 views
Solr filter out facet results individually
I am working on filtering out facet returned by solr based on predefined list of criterias.
For example I am querying for documents that are of different types. The facet returned is as follows:
...
0
votes
0answers
42 views
Partial search using sunspot solr in rails
I'm trying to do partial search using sunspot solr. Before searching I'm splitting the entered string. For example, if the entered string is 'adidas pants' I will split into 'adidas' and 'pants'.Using ...
1
vote
2answers
62 views
Convert string to an array in rails
How do I convert a string to an array so that it can be searched one by one. For example if the parameter passed is puma shirts,I want to split it as puma and shirt so that I can do solr search with ...
0
votes
1answer
24 views
How to connect DisMax handler solr?
How should I configure solrconfig.xml for connecting DisMax plugin? I need it to use full-text search.
0
votes
1answer
29 views
How to return search results with Sunspot and Solr in rails app?
I am having some trouble with Sunspot and Solr. When I pass a parameter, I'm getting no results. I've included in the comments at 2 points in the code.
I've confirmed that there is also data in ...
0
votes
0answers
27 views
Search single text when multiple text is entered using Solr search
I'm trying to do single text search when the user enters mutiple text. Suppose when the user enters 'adidas pants', I want to search the text 'adidas' first in a table called table1. Then the same ...
0
votes
1answer
88 views
Scalability of Solr and ElasticSearch: fields of 5000 values
I need to send records to a search engine (Solr or ElasticSearch) to index.
In my design, a field can have up to 5000 values and for some records, ALL these 5000 values (OR or AND relationship) of ...
0
votes
0answers
34 views
Mixed results in rails using solr search
I'm trying implement search function in a project. When the user enters any text, i will use that text as a parameter and will do solr search in 3 tables say table1,table2,table3 and retreive their ...
0
votes
0answers
32 views
Liferay Indexer with Solr
I just wanted to check with more experienced devepopers on how I use Solr with Liferay.
I decided to completely replace Lucene with Solr in my portal installation. Now I have custom assets that I want ...
0
votes
1answer
33 views
IF conditions in rails is not executing
I'm trying to do solr search based on the text entered by the user. Firts I've to check whether the entered text is store or brand or category. After checking that condition I want to display ...
1
vote
0answers
35 views
Optimal Indexing strategy for Multilingual requirement using solr
We use IBM WCS v7 for one of our e-commerce based requirement, in which Apache solr is embeded for the search based implementation.
As per a new requirement, there will be multiple language support ...
0
votes
2answers
75 views
Solr - most frequent searched words
this is my firs question :) ; i'm a student and, as an homework, i'm trying to organize a good solr search engine, using the most common tools and the most knows features. I've already setted up the ...
0
votes
1answer
29 views
Solr - Enriching the TermsComponent answer
I'm using Solr 3.5.0 (with WebSphere Commerce). While performing a search, commerce use the suggestion tool to suggest (auto-complete) search terms regarding the letters already typed on the search ...
0
votes
0answers
98 views
Storing structured data in Lucene
I have seen many references pointing to the use of Lucene or Solr as a NoSQL data store, not just the indexing engine:
NoSQL (MongoDB) vs Lucene (or Solr) as your database
...
1
vote
1answer
94 views
How to add distinct values in a multivalue field in solr
I have a multivalue field called category(which is also a store field) in which i need to add only distinct values
<field name="category">value1</field>
<field ...
-1
votes
2answers
36 views
SOLR relevance seems tied heavily to length of document indexed
We have a lot of documents in SOLR and a certain type of them tend to score too highly in results (it appears mainly due them generally being quite short in content). So if I search for a name it will ...
0
votes
1answer
116 views
how can i implement “People also search for” just like google [closed]
Hi, I was wondering what is the way to implement "People also search for"; when you do a search for something, you could show something on the side saying people who searched for this also. You can ...
0
votes
1answer
45 views
In SOLR, how can I query to find an indexed keyword inside a user provided search query?
I am running SOLR 3.6, and have documents that have tags indexed. When a user enters a search phrase, I'd like to be able to find documents with tags contained inside that query.
E.g, a user ...
0
votes
1answer
51 views
Solr seach with Mysql Database, any utility for data importing
We are looking at ways of improving "search" functionality in our large business application which currently uses SQL Like syntax to do it. So we started evaluating Solr server and were able to index ...
0
votes
0answers
19 views
Overwhelmed by the prospect of implementing generic synonyms in Solr
We haven't implemented synonyms in Solr yet, but it's on our to-do list. I'm concerned though, how should I develop a list of synonyms? We have a pretty generic document-set that we index, there are ...
3
votes
1answer
55 views
Boosting the relevance of a field, with the value of another (numerical)
I am developing a platform, where users are organizing items in collections. Each of the collections can be followed by users. Those collections are afterwards indexed by Solr, and made searchable. I ...
0
votes
2answers
35 views
Full text searches on product codes
Today's challenge is creating a search engine for my store's products db.
A lot of products are created by hand, by a lot of different hands!
So it's likely to find "i-phone 3gs", "iPhone4" and "i ...
0
votes
1answer
29 views
Accessing limited data from solr
I have huge amount of data to be searched. I want to search from solr, and slor will return only ids of the searched records.
Now i have a cache of all the records in solr (Memcache) and want to ...
0
votes
2answers
53 views
Is there any MySQL's stored procedure alternative in Apache Solr?
Actually I have already created Web Application that widely uses MySQL Store Procedure. Now we want to integrate Apache Solr in our Web Application.
In existing application,the Store Procedure takes ...
0
votes
1answer
51 views
Searching with Lucene with stemming enabled
Suppose I store a set of strings (each document in Lucene would be a single word), and then given an input word W, I would like to retrieve all the document that not only match word W but also those ...
0
votes
1answer
38 views
Use termfreq(field,term) function for phrase with space in SOLR 4.1
I am using termfreq(field,term) SOLR function. This works:
?fl=product_name,termfreq(product_name,"iphon")&q=iphone 4s //Found freq
But the problem is to have term like "iphone 4s" with ...
0
votes
1answer
86 views
How to turn query, which searches SOLR data, into lowercase?
My scheme.xlm looks like this:
<fieldType name="text" class="solr.TextField" positionIncrementGap="100">
<analyzer type="index">
<tokenizer ...
0
votes
1answer
62 views
Solr / Lucene: scoring individual tag
I'm designing a Lucene search index that includes ranked tags for each document.
Example:
Document 1
tag: java , rank 1.2
tag: learning, rank 2.1
tag: bugs, rank 1.2
tag: architecture: rank 0.3
...
0
votes
1answer
49 views
How should I configure a Solr query to search for a term in multiple fields?
I'm trying to construct a Solr query to search for the term "tree" in the fields "type" and "desc".
Here's my attempt so far:
?q=tree
&defType=dismax
&qf=type desc
However, this only works ...
0
votes
1answer
53 views
Solr: Boosting documents based on a numeric 'popularity' field - do it at index time or query time?
I'm reading the solr cookbook and it suggests using a boost function bf=product(popularity) parameter to boost certain documents based on the "popularity" score.
This could also be implemented using ...
2
votes
2answers
145 views
Documents in index per day
All documents in a Solr index have an "added" field containing the ISO 8601 date in which the document was added to Solr.
<result name="response" numFound="34587104" start="0">
<doc>
...
2
votes
2answers
105 views
Solr: The default OR operator returns irrelevant results, when the fields are queried with multiple words
I need to make my Solr-based search return results if all of the search keywords appear anywhere in any of the search fields.
The current situation:
an example search query: keywords: "berlin house ...
1
vote
1answer
81 views
Lucene analyzer for first name
Is there a Lucene analyzer out there that tokenizes name parts with their short name equivalents (e.g. Mike and Michael, Rich and Richard, Suzie and Susan), etc?
Fuzzy match on Levenshtein distance ...
0
votes
2answers
72 views
solr PatternReplaceCharFilterFactory working unexpectedly
I am relatively new to Solr so please forgive me if I'm missing something obvious. I have an application that allows users to search for musical artists. The indexing comes from a read-only database ...
2
votes
1answer
65 views
RequestHandler with edismax ignore Synonyms and Stopwords
I have the following query defined in my solrconfig.xml:
<requestHandler name="/defaultSearch" class="solr.SearchHandler">
<!-- Adds filters to all queries-->
<lst ...
5
votes
3answers
108 views
Solr 4.0 storing and searching Normalize data of Profile
I was evaluating Solr 4.0 and Elastic Search 0.20.5 for linkedin type searching and wondering how to store Normalize data of user profile which can easily achieved in elasticsearch using nested ...

