Re: Is there a way to standardize the stored values (like using synonyms for indexed values)?

2013-10-26 Thread Anshum Gupta
Perhaps your question is similar to another one on the list. http://lucene.472066.n3.nabble.com/Normalized-data-during-indexing-td4097750.html#a4097752 On Sat, Oct 26, 2013 at 4:40 AM, Developer bbar...@gmail.com wrote: I am trying to figure out a way to standardize the stored values using a

Re: Solr - what's the next big thing?

2013-10-26 Thread Saar Carmi
LOL, Jack. I can imagine Otis saying that. Otis, with these marriage, are we going to see map reduce based queries? On Oct 25, 2013 10:03 PM, Jack Krupansky j...@basetechnology.com wrote: But a lot of that big yellow elephant stuff is in 4.x anyway. (Otis: I was afraid that you were going

Re: Help on solr more like this functionality

2013-10-26 Thread Koji Sekiguchi
Hi Suren, (13/10/25 23:36), Suren Raju wrote: Hi, We are trying to solve a business problem by performing solr more like this query. We are able to perform the more like this search. We have a specific use case that requires different boost on different match fields. Say i do more like this

Indexing on plain text data and base64 encode data in a single HTTP POST request

2013-10-26 Thread neerajp
Hi, I am using Solr for searching my email data. My application is in C++ so I a using CURL library to POST the data to Solr for indexing. I am posting data in XML format and some of the XML fields are in plain text and some of the base64 encoded. I want to know what should I do so that Solr can

Implementing OpenSearch For Solr Responses

2013-10-26 Thread Furkan KAMACI
Hi; This question my not be directly related to Solr but I want to generate OpenSearch standard responses from my Solr indexes. As usual I don't expose my Solr indexes to the outside and I've implemented a custom API for querying. My motivation to support OpenSearch is that:

Re: difference between apache tomcat vs Jetty

2013-10-26 Thread Scott Vanderbilt
On 10/25/2013 8:18 AM, Cassandra Targett wrote: In terms of adding or fixing documentation, the Installing Solr page (https://cwiki.apache.org/confluence/display/solr/Installing+Solr) includes a yellow box that says: Solr ships with a working Jetty server, with optimized settings for Solr,

Re: Solr - what's the next big thing?

2013-10-26 Thread Otis Gospodnetic
Hi, On Sat, Oct 26, 2013 at 5:58 AM, Saar Carmi saarca...@gmail.com wrote: LOL, Jack. I can imagine Otis saying that. Funny indeed, but not really. Otis, with these marriage, are we going to see map reduce based queries? Can you please describe what you mean by that? Maybe with an

Re: Indexing on plain text data and base64 encode data in a single HTTP POST request

2013-10-26 Thread Jack Krupansky
You can use an update processor. Maybe write a JavaScript script for the stateless script update processor that takes a list of field names and then converts the base 64 encoding to normal text for those specified fields. Or, convert base 64 to text before you send the field values to Solr.

Re: Solr + SPDY

2013-10-26 Thread Vinay Pothnis
Hi Otis, While the main goal of SPDY is to reduce page load times - i think we could benefit from it in Solr context as well. The transport layer is still TCP - but SPDY allows multiplexing of requests. It also uses compression and reduces the overhead of http headers. An excerpt from

Re: Solr - what's the next big thing?

2013-10-26 Thread Bill Bell
Full JSON support deep complex object indexing and search Game changer Bill Bell Sent from mobile On Oct 26, 2013, at 1:04 PM, Otis Gospodnetic otis.gospodne...@gmail.com wrote: Hi, On Sat, Oct 26, 2013 at 5:58 AM, Saar Carmi saarca...@gmail.com wrote: LOL, Jack. I can imagine

Solr For

2013-10-26 Thread Baskar Sikkayan
Hi, Looking for solr config for Job Site. In a job site there are 2 main searches. 1) Employee can search for job ( based on skill set, job location, title, salary ) 2) Employer can search for employees ( based on skill set, exp, location, ) Should i have a separate config xml for both

Re: Solr For

2013-10-26 Thread Gora Mohanty
On 27 October 2013 07:22, Baskar Sikkayan baskar@gmail.com wrote: Hi, Looking for solr config for Job Site. In a job site there are 2 main searches. 1) Employee can search for job ( based on skill set, job location, title, salary ) 2) Employer can search for employees ( based on

Re: Indexing on plain text data and base64 encode data in a single HTTP POST request

2013-10-26 Thread neerajp
I can not convert base64 encoded data to text in my application as it will impact my core application processing. I want this task should be done at Solr side. Can I use Apache Tika for this at solr side ? But the format I am sending to Solr is XML format with some fields are in plain text and

Re: Indexing on plain text data and base64 encode data in a single HTTP POST request

2013-10-26 Thread Alexandre Rafalovitch
I think Jack already answered this one: You can use an update processor. Buy his book, I am sure he has lots of examples. :-) Or just start from: https://wiki.apache.org/solr/UpdateRequestProcessor And review: