Fwd: Mobiles/Tablets for Repair

2013-11-08 Thread Rohan Thakur
duct kindly let me know, ZurePro will take care of it. :) Cheers!! -- Best Regards, Rohan Thakur

help regarding custom query which returns custom output

2013-09-09 Thread Rohan Thakur
hi all I have requirement like I have implemented fulltext search and autosuggestion and spellcorrection functionality in solr but they all are running on different cores so I have to call 3 different request handlers for getting the results which is adding the unnecessary delay so I wanted to kno

query regarding running solr4.1.0 on tomcat6

2013-04-01 Thread Rohan Thakur
hi all I had installed tomcat6 on centos redhat linux os and had configured solr with name on solrt on tomcat and It was running fine now what I did was placed another copy of solr home folder in centos and changed the tomcat directory to this new solr and now every thing is working fine like the

Re: had query regarding the indexing and analysers

2013-04-01 Thread Rohan Thakur
f text_en_splitting and delete the > PorterStemFilterFactory filter from both the query and index analyzers. > > > -- Jack Krupansky > > -Original Message- From: Rohan Thakur > Sent: Wednesday, March 20, 2013 8:39 AM > > To: solr-user@lucene.apache.org > Subject: Re:

Re: is there a way we can build spell dictionary from solr index such that it only take words leaving all`special characters

2013-04-03 Thread Rohan Thakur
your index directly. > > Upayavira > > On Wed, Mar 13, 2013, at 06:00 AM, Rohan Thakur wrote: > > while building the spell dictionary... > > > > On Wed, Mar 13, 2013 at 11:29 AM, Rohan Thakur > > wrote: > > > > > even do not want to break the words as in sams

how to avoid single character to get indexed for directspellchecker dictionary

2013-04-04 Thread Rohan Thakur
hi all I am using solr directspellcheker for spell suggestions using raw analyses for indexing but I have some fields which have single characters like l L so its is been indexed in the dictionary and when I am using this for suggestions for query like delll its suggesting de and l l l as the spel

Re: how to avoid single character to get indexed for directspellchecker dictionary

2013-04-04 Thread Rohan Thakur
ers#solr.LengthFilterFactory. > > James Dyer > Ingram Content Group > (615) 213-4311 > > > -Original Message- > From: Rohan Thakur [mailto:rohan.i...@gmail.com] > Sent: Thursday, April 04, 2013 1:42 PM > To: solr-user@lucene.apache.org > Subject: how to avoid s

Re: how to avoid single character to get indexed for directspellchecker dictionary

2013-04-05 Thread Rohan Thakur
dell and l and will return the results with dell in the documents so to remove such thing do I have to use minbreaklenth? and what is the significance of minbreak length number? On Fri, Apr 5, 2013 at 12:20 PM, Rohan Thakur wrote: > hi james > > after using this its working file for

solr spell suggestions help

2013-04-05 Thread Rohan Thakur
hi all I had some issues with solr spell suggestions. 1) first of all I wanted to know is indexbased spell suggestions better then directspell suggestions that solr 4.1 provides in any way? 2) then I wanted to know is their way I can get suggestions for words providing only few prefix for the w

query regarding spell suggestions for multiple word query

2013-04-07 Thread Rohan Thakur
hi all I wanted to know how can I generate spell suggestion for more than one word query my suggestions are working well for single word correction but when I pass more then one word query and any one of them is correct and other is wrong spelled the sentence is showns as correct and the results a

help needed for applying patch to solr I am using

2013-04-08 Thread Rohan Thakur
hi all I am new to solr and wanted to apply this patch to my solr how can I do this searched on net but did not got any thing useful the patch is: https://issues.apache.org/jira/browse/SOLR-2585 I am using solr 4.1.0 on tomcat6 in redhat centos. thanks regards rohan

Re: solr spell suggestions help

2013-04-08 Thread Rohan Thakur
is solrs issue and they have also released patch for that https://issues.apache.org/jira/browse/SOLR-2585 I am applying this patch now will let you know if its is working correctly. thanks regards Rohan On Fri, Apr 5, 2013 at 4:44 PM, Rohan Thakur wrote: > hi all > > I had some issues

Re: help needed for applying patch to solr I am using

2013-04-08 Thread Rohan Thakur
this happening? any one please help and when I am querying it like "microvave oven" its providing corrected suggestionhow to handle this any one please help... thanks regards Rohan On Mon, Apr 8, 2013 at 1:18 PM, Rohan Thakur wrote: > hi all > > I am new to solr and w

Re: help needed for applying patch to solr I am using

2013-04-08 Thread Rohan Thakur
hi all I think I have to pass the query in inverted commas then its returning correct results as i needed. thanks regards Rohan On Mon, Apr 8, 2013 at 1:50 PM, Rohan Thakur wrote: > hi all > > just checked out this issue was already incorporated in solr4.0 alpha and > I am using

spell suggestions help

2013-04-08 Thread Rohan Thakur
hi all one thing I wanted to clear is for every other query I have got correct suggestions but these 2 cases I am not getting what suppose to be the suggestions: 1) I have kettle(doc frequency =5) and cable(doc frequecy=1) word indexed in direct solr spell cheker..but when I query for cattle I ge

query regarding the use of boost across the fields in edismax query

2013-04-09 Thread Rohan Thakur
hi all wanted to know what could be the difference between the results if I apply boost accross say 5 fields in query like for first: title^10.0 features^7.0 cat^5.0 color^3.0 root^1.0 and second settings like : title^10.0 features^5.0 cat^3.0 color^2.0 root^1.0 what could be the difference as i

Re: query regarding the use of boost across the fields in edismax query

2013-04-09 Thread Rohan Thakur
sing something but in the first case features, cat, > and color field have more weight, so matches on them with have bigger > contribution to the overall relevancy score. > > Otis > -- > Solr & ElasticSearch Support > http://sematext.com/ > > > > > > On Tue

Re: spell suggestions help

2013-04-11 Thread Rohan Thakur
hi erick do we have to do urlencoding from the php side or does solr supports urlencode? On Thu, Apr 11, 2013 at 5:57 AM, Erick Erickson wrote: > Try URL encoding it and/or escaping the & > > On Tue, Apr 9, 2013 at 2:32 AM, Rohan Thakur wrote: > > hi all > > > >

Re: spell suggestions help

2013-04-11 Thread Rohan Thakur
replace filter at query time to replace & with and but it did not worked I used & => replace with "and" in this but did not worked any guess our help.. thanks regards rohan On Thu, Apr 11, 2013 at 4:39 PM, Rohan Thakur wrote: > hi erick > > do we have to do urle

Re: spell suggestions help

2013-04-11 Thread Rohan Thakur
in term analysis it gets > discarded. > > -- Jack Krupansky > > -Original Message- From: Rohan Thakur > Sent: Thursday, April 11, 2013 7:39 AM > To: solr-user@lucene.apache.org > Subject: Re: spell suggestions help > > > urlencode replaces & with space thus resul

solr spell correction help

2013-04-12 Thread Rohan Thakur
hi all I have configured solr direct spell correction on spell field most of the words solr is correcting and giving suggestions but on some words like mentioned below is giving absurd results: 1) blender(indexed) 2) kettle(indexed) 3) electric(indexed) problems: 1) when I search for blandar its

Re: solr spell correction help

2013-04-14 Thread Rohan Thakur
> > -- Jack Krupansky > > -Original Message- From: Rohan Thakur > Sent: Friday, April 12, 2013 8:45 AM > To: solr-user@lucene.apache.org > Subject: solr spell correction help > > > hi all > > I have configured solr direct spell correction on spell field most of th

Re: solr spell correction help

2013-04-14 Thread Rohan Thakur
but jack im not using lavanstine distance measures im using jarowinker distance On Mon, Apr 15, 2013 at 11:50 AM, Rohan Thakur wrote: > k thanks jack but then why does cattle not giving kettle as suggestions?? > > > On Fri, Apr 12, 2013 at 6:46 PM, Jack Krupansky > wrote:

query regarding the multiple documents

2013-05-06 Thread Rohan Thakur
hi all wanted to know that I have indexed documents for search purpose in solr and now for auto suggestion purpose I want to index new data that is the popular query term searched by users and frequency of them to get searched on websitebut as it has no relation with the product data on which

indexing unrelated tables in single core

2013-05-15 Thread Rohan Thakur
hi all I want to index 2 separate unrelated tables from database into single solr core and search in any one of the document separately how can I do it? please help thanks in advance regards Rohan

Re: indexing unrelated tables in single core

2013-05-16 Thread Rohan Thakur
exandrerafalovitch > - Time is the quality of nature that keeps events from happening all > at once. Lately, it doesn't seem to be working. (Anonymous - via GTD > book) > > > On Wed, May 15, 2013 at 7:07 AM, Rohan Thakur > wrote: > > hi all > > > > >

Re: indexing unrelated tables in single core

2013-05-16 Thread Rohan Thakur
its saying in the logs that missing required field title which is no where in the database... On Thu, May 16, 2013 at 3:08 PM, Rohan Thakur wrote: > I am not able to index the fields from data base its getting failed... > > data-config.xml > > url="jd

Re: indexing unrelated tables in single core

2013-05-16 Thread Rohan Thakur
d field 'title' > and your query and data import config aren't providing it. > On May 16, 2013 5:51 AM, "Rohan Thakur" wrote: > > > its saying in the logs that missing required field title which is no > where > > in the database... > > > > &

Re: indexing unrelated tables in single core

2013-05-16 Thread Rohan Thakur
rejecting other table as document when I am taking primary key of one table as unique key in the solr schema...and vice verca.how to solve this? On Thu, May 16, 2013 at 4:24 PM, Rohan Thakur wrote: > hi > > I got the problem it is with the unique key defined in the schema.xml > if i dif

Re: indexing unrelated tables in single core

2013-05-16 Thread Rohan Thakur
Thu, May 16, 2013 at 5:11 PM, Gora Mohanty wrote: > On 16 May 2013 16:24, Rohan Thakur wrote: > > hi > > > > I got the problem it is with the unique key defined in the schema.xml > > if i difine it to be query_id then while indexing it says > > missing mandatory

Re: indexing unrelated tables in single core

2013-05-16 Thread Rohan Thakur
the tablesbut this is not correct as both the product_id and query_id has no relation as such both are representing separate things in each tables. regards Rohan On Thu, May 16, 2013 at 5:11 PM, Gora Mohanty wrote: > On 16 May 2013 16:24, Rohan Thakur wrote: > > hi > > > > I

Re: indexing unrelated tables in single core

2013-05-21 Thread Rohan Thakur
thanks gora I got that...have to change in the DB itself... On Fri, May 17, 2013 at 6:27 PM, Gora Mohanty wrote: > On 16 May 2013 19:11, Rohan Thakur wrote: > > hi Mohanty > > > > I tried what you suggested of using id as common field and changing the > SQL > >

Sorting solr search results using multiple fields

2013-05-22 Thread Rohan Thakur
hi all I wanted to know is there a way I can sort the my documents based on 3 fields I have fields like pop(which is basically frequency of the term searched history) and autosug(auto suggested words) and initial_boost(copy field of autosug such that only match with initial term match having whole

Re: Sorting solr search results using multiple fields

2013-05-22 Thread Rohan Thakur
this? or is there some better solution.. thanks regards Rohan On Wed, May 22, 2013 at 6:39 PM, Gora Mohanty wrote: > On 22 May 2013 18:26, Rohan Thakur wrote: > > hi all > > > > I wanted to know is there a way I can sort the my documents based on 3 > > fields > >

Re: Sorting solr search results using multiple fields

2013-05-22 Thread Rohan Thakur
k thanks gora that what I was thinking but thought I should ask as there might be some solution in solr it self...the last option fine I would go with that only. thanks rohan On Thu, May 23, 2013 at 9:13 AM, Gora Mohanty wrote: > On 22 May 2013 19:37, Rohan Thakur wrote: > [...] >

Re: help with getting error with mysql driver connection in solr 4.1

2013-02-03 Thread Rohan Thakur
create "ext" if it does not exists. > > > HTH. > > Arcadius. > > > > On 1 February 2013 13:25, Rohan Thakur wrote: > > > hi everyone > > > > I am getting problem regarding mysql driver connection im upgrading to > solr > > 4.1 was usi

Re: help with getting error with mysql driver connection in solr 4.1

2013-02-03 Thread Rohan Thakur
il.t hread.QueuedThreadPool.runJob(QueuedThreadPool.java:608)\r\n\tat org.eclipse.jet ty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543)\r\n\tat java.la ng.Thread.run(Unknown Source)\r\n","code":500}} and nothing is changed for the field value am I doing something

Re: help with getting error with mysql driver connection in solr 4.1

2013-02-04 Thread Rohan Thakur
Mon, Feb 4, 2013 at 1:29 PM, Rohan Thakur wrote: > hi arcadius > > can you also help me with partial document update...I have followed what > is written in this blog but its giving me error > http://solr.pl/en/2012/07/09/solr-4-0-partial-documents-update/ > > error

Re: help with getting error with mysql driver connection in solr 4.1

2013-02-04 Thread Rohan Thakur
pse.jetty.util.thread.QueuedThreadP ool$3.run(QueuedThreadPool.java:543)\r\n\tat java.lang.Thread.run(Unknown Source )\r\n","code":500}} curl: (6) Could not resolve host: value:set:samsung-111; Host not found even in place of 127.0.0.1 i have tried using localhostbut it still give

Re: solr atomic update

2013-02-04 Thread Rohan Thakur
hi were you able to do atomic update for specific field using curlim using curl from windows cmd but getting error like host can not be resolved im using this command: C:\Users\rohan>curl www.localhost.com:8983/solr/update?commit=true -H "Content-t ype:text/json" -d '[{"value":"samsung-wave-s5

Re: help with getting error with mysql driver connection in solr 4.1

2013-02-04 Thread Rohan Thakur
for any help would be appreciated. thanks regards rohan On Mon, Feb 4, 2013 at 4:28 PM, Rohan Thakur wrote: > hi gora > > I have tried what you told but now its giving error like: > > C:\Users\rohan>curl 127.0.0.1:8983/solr/update?commit=true -H > "Content-type:appl &g

Re: help with getting error with mysql driver connection in solr 4.1

2013-02-04 Thread Rohan Thakur
yup I am downloading cygwin now...will be working through there let see it should work though... On Mon, Feb 4, 2013 at 5:14 PM, Gora Mohanty wrote: > On 4 February 2013 16:58, Rohan Thakur wrote: > > > > hi > > > > I think I have found the problem its windows whic

Re: help with getting error with mysql driver connection in solr 4.1

2013-02-04 Thread Rohan Thakur
thanks I have instaled cygwin and its running fine now thanks.. On Mon, Feb 4, 2013 at 6:14 PM, Gora Mohanty wrote: > On 4 February 2013 17:50, Rohan Thakur wrote: > > yup I am downloading cygwin now...will be working through there let see > it > > should work though...

auto trigger the delta import to update index in solr if any update in sql database

2013-02-05 Thread Rohan Thakur
hi everyone is their any way in which we can auto trigger the delta import to update index in solr if their any update in sql database. thanks regards Rohan

Re: auto trigger the delta import to update index in solr if any update in sql database

2013-02-05 Thread Rohan Thakur
vents from happening all at > once. Lately, it doesn't seem to be working. (Anonymous - via GTD book) > > > On Tue, Feb 5, 2013 at 5:39 AM, Rohan Thakur wrote: > > > hi everyone > > > > is their any way in which we can auto trigger the delta impor

Re: auto trigger the delta import to update index in solr if any update in sql database

2013-02-05 Thread Rohan Thakur
hi jp thanks can you provide me any good link for thisthanks regards Rohan On Tue, Feb 5, 2013 at 6:52 PM, jp wrote: > You could use SQL service Broker External Activation service to monitor the > changes and post the changes into the Solr Index using update request > handler in soft commi

Re: auto trigger the delta import to update index in solr if any update in sql database

2013-02-06 Thread Rohan Thakur
hi thanks but I think this one is for ms sql not for mysql regards Rohan On Wed, Feb 6, 2013 at 11:53 AM, jp wrote: > The following link provides on using external activator for tracking DB > changes > http://ajitananthram.wordpress.com/2012/05/26/auditing-external-activator/ > > --JP > >

Re: solr file based spell suggestions

2013-02-08 Thread Rohan Thakur
ell > check" or "suggestion". > > Synonyms are a closer match, but can be difficult to configure properly. > Good luck. > > You may be better off preprocessing the query at the application level and > then generating the appropriate boolean logic, such as: "(s2

Re: html parsing with dataimport handler from sql column

2013-02-20 Thread Rohan Thakur
Mohanty wrote: > On 20 February 2013 18:31, Rohan Thakur wrote: > > hi all > > > > I have data stored in HTML format in a column in sql database and want to > > index the data from that field to solr how can I do that any one has idea > > please help. right now i am

Re: Is their a way in which I can make spell suggestion dictionary build on specific fileds

2013-02-25 Thread Rohan Thakur
> spell > > See the Solr example solrconfig.xml and search for name="spellchecker">. > > Also see: > http://wiki.apache.org/solr/**SpellCheckComponent<http://wiki.apache.org/solr/SpellCheckComponent> > > -- Jack Krupansky > > -Original Message---

Re: solr search showing irrelevant results

2013-03-04 Thread Rohan Thakur
I am using "text_en_splitting" as while indexing is that the problem?? On Mon, Mar 4, 2013 at 7:02 PM, Rohan Thakur wrote: > hi all > > I wanted to know that why solr is showing irrelevant result as I search > for "galaxy ace" its showing result "sony bravia

Re: solr search showing irrelevant results

2013-03-04 Thread Rohan Thakur
Jack Krupansky > > -Original Message- From: Rohan Thakur > Sent: Monday, March 04, 2013 8:32 AM > To: solr-user@lucene.apache.org > Subject: solr search showing irrelevant results > > > hi all > > I wanted to know that why solr is showing irrelevant result as I s

Re: query about length normalization in solr for relevance score

2013-03-06 Thread Rohan Thakur
k thanks On Wed, Mar 6, 2013 at 5:05 PM, Otis Gospodnetic wrote: > Hi Rohan, > > It's per field. > > Otis > -- > Solr & ElasticSearch Support > http://sematext.com/ > > > > > > On Wed, Mar 6, 2013 at 3:09 AM, Rohan Thakur wrote: > > >

Re: query about length normalization in solr for relevance score

2013-03-06 Thread Rohan Thakur
them taking both the words collectively or separating them and adding the scores and if adding the scores then how does is find scores individually? On Wed, Mar 6, 2013 at 5:17 PM, Rohan Thakur wrote: > k thanks > > > On Wed, Mar 6, 2013 at 5:05 PM, Otis Gospodnetic < > otis.gos

Re: query about length normalization in solr for relevance score

2013-03-06 Thread Rohan Thakur
1.0 = termFreq=1.0\n 8.345795 = idf(docFreq=38, maxDocs=60437)\n 0.375 = fieldNorm(doc=21574)\n 0.667 = coord(2/3)\n"}, thanks in advance regards Rohan On Wed, Mar 6, 2013 at 10:14 PM, Otis Gospodnetic < otis.gospodne...@gmail.com> wrote: > That's a

Re: query about length normalization in solr for relevance score

2013-03-06 Thread Rohan Thakur
Rohan On Thu, Mar 7, 2013 at 11:48 AM, Rohan Thakur wrote: > yup I got that but can you please explain me how is it going on? > I got this: > > "rawquerystring":"samsung ace metallic", > "querystring":"samsung ace metallic", >

Re: query about length normalization in solr for relevance score

2013-03-06 Thread Rohan Thakur
If you can explain any one line of I will figure out othersthanks On Thu, Mar 7, 2013 at 11:48 AM, Rohan Thakur wrote: > yup I got that but can you please explain me how is it going on? > I got this: > > "rawquerystring":"samsung ace metallic", >

Re: is there a way we can build spell dictionary from solr index such that it only take words leaving all`special characters

2013-03-12 Thread Rohan Thakur
:06 PM, Alexandre Rafalovitch wrote: > Sorry, leaving them where? > > Can you give a concrete example or problem. > > Regards, > Alex > On Mar 12, 2013 1:31 PM, "Rohan Thakur" wrote: > > > hi all > > > > wanted to know is there way we can ma

Re: is there a way we can build spell dictionary from solr index such that it only take words leaving all`special characters

2013-03-12 Thread Rohan Thakur
even do not want to break the words as in samsung to s a m s u n g or sII ti s II ir s2 to s 2 On Wed, Mar 13, 2013 at 11:28 AM, Rohan Thakur wrote: > k as in like if the field I am indixing from the database like title that > has characters like () - # /n// > example: > >

Re: is there a way we can build spell dictionary from solr index such that it only take words leaving all`special characters

2013-03-12 Thread Rohan Thakur
while building the spell dictionary... On Wed, Mar 13, 2013 at 11:29 AM, Rohan Thakur wrote: > even do not want to break the words as in samsung to s a m s u n g or sII > ti s II ir s2 to s 2 > > On Wed, Mar 13, 2013 at 11:28 AM, Rohan Thakur wrote: > >> k as in like if th

Re: removing all fields before full import using DIH

2013-03-18 Thread Rohan Thakur
import...k so this automatically does that... thanks for confirming. regards Rohan On Mon, Mar 18, 2013 at 1:32 PM, Gora Mohanty wrote: > On 18 March 2013 13:09, Rohan Thakur wrote: > > hi all > > > > how can I ensure that I have delete all the fields for solr before doing &

Re: wanted to know can we some how know what are the documents that are exact match in solr

2013-03-19 Thread Rohan Thakur
the details of what terms matched for each document. > > -- Jack Krupansky > > -Original Message- From: Rohan Thakur > Sent: Friday, March 15, 2013 9:19 AM > To: solr-user@lucene.apache.org > Subject: wanted to know can we some how know what are the documents that > are

Re: had query regarding the indexing and analysers

2013-03-19 Thread Rohan Thakur
the debug info at the > parsed form of the query to see what's actually being searched. > > Best > Erick > > > On Fri, Mar 15, 2013 at 2:52 AM, Rohan Thakur > wrote: > > > hi all > > > > wanted to know I have this string in field title : > >

Re: had query regarding the indexing and analysers

2013-03-20 Thread Rohan Thakur
al to a > compound term (e.g., "CD-ROM") or a phrase separator as in your case. Some > people are careful to put spaces around the hyphen for a phrase delimiter, > but plenty of people still just drop it in directly adjacent to two words. > > In your case, text_en_splitting_tight is SP