Re: Comment Unused portions in solrconfig

2011-04-01 Thread rahul
thanks for your info. On Sat, Apr 2, 2011 at 9:51 AM, Chris Hostetter-3 [via Lucene] < ml-node+2766175-1482636196-340...@n3.nabble.com> wrote: > > : I have little bit concerned about, if I comment those unused modules from > > : solrconfig.xml, whether it will used to increase search performance

Re: Multiple terms in query

2011-04-01 Thread Paul Libbrecht
Depending on the query type you use, you can give weight to particular fields. In dismax, the queried fields can be given a weight. paul Le 2 avr. 2011 à 07:43, Prav Buz a écrit : > Hi, > > When I search multiple terms in solr query , though I get all the results > containing either of the ter

Multiple terms in query

2011-04-01 Thread Prav Buz
Hi, When I search multiple terms in solr query , though I get all the results containing either of the terms , but the results which contain both terms are outranked by the others. For example: Panasonic Camera most of the top results are those which contain "Panasonic" , and they are of access

Re: Comment Unused portions in solrconfig

2011-04-01 Thread Chris Hostetter
: I have little bit concerned about, if I comment those unused modules from : solrconfig.xml, whether it will used to increase search performance little : bit. ?? Or if I comment then it will affect any of the Solr : operations/performance ?? there may be some things you are using w/o realizing i

Re: ExternalFileField with whitespaces

2011-04-01 Thread Chris Hostetter
: Subject: ExternalFileField with whitespaces ... : I think it is a bug, therefore I opened issue SOLR-2335. : : To handle this problem we now have to decide if we implement a : workaround in our application to replace whitespaces or if we try to : patch solr to work with whitepaces in dy

Using the Data Import Handler with SQLite

2011-04-01 Thread Zac Smith
I hope this question is being directed to the right place ... I am trying to use SQLite (v3) as a source for the Data Import Handler. I am using a sqllite jdbc driver (link below) and this works when using with only one entity. As soon as I add a sub-entity it falls over with a locked DB error:

Re: [Solr Wiki] Update of "Troubleshooting HTTP Status 404 - missing core name in path" by Gabriele Kahlout

2011-04-01 Thread Chris Hostetter
Gabriele: Creating a wiki page really isn't the approprate way to ask for help diagnosing a problem -- that's why we have the user mailing list. Regarding your specific problem, note that this... : $SOLR_HOME/solr.xml: : {{{ : : : : : }}} ...is not a valid solr.xml file ... that is a co

Re: Solr 1.4.1 and Tika 0.9 - some tests not passing

2011-04-01 Thread Andreas Kemkes
Thank you. That is valuable guidance. In light of the recent release of Solr 3.1, I decided to first try that distribution, as it already uses Tika 0.8, which is much closer to my target. Out of the box (i.e., w/o replacing the Tika and PDFBox libraries) the tests pass, yet I see the error bel

wildcard search inconsistencies

2011-04-01 Thread Melanie Drake
I noticed an inconsistency in results when performing wildcard searches. When searching on variations of "conditional" the following results occurred: conditional - hits conditional* - hits conditi* - hits condit* - hits con*al - no hits c?nditional - no hits c*ld - hits (on a different word: "ch

Re: ComplexPhraseQueryParser and wildcards

2011-04-01 Thread Erick Erickson
Here's the Solr JIRA: You need to create a login here: https://issues.apache.org/jira/secure/Dashboard.jspa https://issues.apache.org/jira/browse/SOLR From there it should be pretty straight-forward. And here are some pointers for using the JIRA... ht

Re: wildcard search inconsistencies

2011-04-01 Thread Melanie Drake
Thanks, Ludovic. That was it. I added the word "conditional" to the protected words file and I no longer see the odd search results when using wildcards. I will try to disable stemming altogether. Thanks again! -- View this message in context: http://lucene.472066.n3.nabble.com/wildcard-sea

Re: wildcard search inconsistencies

2011-04-01 Thread lboutros
And to be more helpfull, you can activate the debug (debugQuery=on in the query) mode to see the transform query : for instance 'field:contitional' : field:conditional field:conditional field:condit field:condit for 'field:conditional*' : field:conditional* field:conditional* field:conditional*

Re: wildcard search inconsistencies

2011-04-01 Thread lboutros
'conditional' seems to be stemmed into the word 'condit' in the index. So your results are normal. As you said, mixing wildcards searching and stemmed fields is not recommanded. Ludovic. 2011/4/1 Melanie Drake [via Lucene] < ml-node+2763787-65059921-383...@n3.nabble.com> > I noticed an inconsi

Re: Problems with DIH and missing fields.

2011-04-01 Thread Marcelo Iturbe
Solved it! commonField="true" should be commonField="false" mistakes that happen when copying source a sample proyect... Thanks for your help. On Fri, Apr 1, 2011 at 10:29 AM, Marcelo Iturbe wrote: > > Hello, > I was able to repeat this behaviour in Solr 3.1.0 > > The procedure is > - renam

Re: Highlight snippets for a set of known documents

2011-04-01 Thread Jay Luker
It turns out the answer is I'm a moron; I had an unnoticed "&rows=1" nestled in the querystring I was testing with. Anyway, thanks for replying! --jay On Fri, Apr 1, 2011 at 4:25 AM, Stefan Matheis wrote: > Jay, > > i'm not sure, but did you try it w/ brackets? > q=foobar&fq={!q.op=OR}(id:1 id:

Re: SolrException: No such core: core1

2011-04-01 Thread Shawn Heisey
On 4/1/2011 3:11 AM, Amel Fraisse wrote: yes with this link : http://localhst:8983/solr/core1/admin I have the same message such : HTTP ERROR: 404 NOT_FOUND RequestURI=/solr/core1/admin Try adding a trailing slash to the URL -- http://localhost:8983/solr/core0/admin/ and http://localhost:

Re: Problems with DIH and missing fields.

2011-04-01 Thread Marcelo Iturbe
Hello, I was able to repeat this behaviour in Solr 3.1.0 The procedure is - rename the directory example-DIH/rss to example-DIH/gcontacts - modify solrconfig.xml to only load gcontacts - rename rss-data-config.xml to gcontacts-data-config.xml and modify (see content below) - modify schema.xml

Re: Unsupported encoding GB18030

2011-04-01 Thread Jan Høydahl
Hi, Then why did it work fine with post.jar on my Mac? The chinese letters show just fine. It also works using curl http://localhost:8983/solr/update?commit=true -H "Content-Type: text/xml" --data-binary @gb18030-example.xml So I imagine there must be something with Windows XP or the JVM on my

Re: ComplexPhraseQueryParser and wildcards

2011-04-01 Thread jmr
Erick Erickson wrote: > > Ohhh, my. Well, in that case I'm afraid I'm out of ideas. Can you > raise a JIRA on the crash? Please include the field definition > and an example of the query you're sending. This should > be fixed... > How can I do this ? Sorry I'm just starting in using Solr and re

Re: Unsupported encoding GB18030

2011-04-01 Thread Li Li
post.jar only support utf8. you must do the transformation. 2011/4/1 Jan Høydahl : > Hi, > > Testing the new Solr 3.1 release under Windows XP and Java 1.6.0_23 > > When trying to post example\exampledocs\gb18030-example.xml using post.jar I > get this error: > % java -jar post.jar gb18030-exampl

Unsupported encoding GB18030

2011-04-01 Thread Jan Høydahl
Hi, Testing the new Solr 3.1 release under Windows XP and Java 1.6.0_23 When trying to post example\exampledocs\gb18030-example.xml using post.jar I get this error: % java -jar post.jar gb18030-example.xml jar gb18030-example.xml SimplePostTool: version 1.3 SimplePostTool: POSTing files to http:

Re: Does solr support secure enterprise search?

2011-04-01 Thread Jan Høydahl
Check out the new Apache project ManifoldCF which integrates nicely with Solr and provides document level security. There's a nice write-up over at JTeam's site: http://blog.jteam.nl/2010/04/16/introduction-to-lucene-connectors-framework-part-1/ -- Jan Høydahl, search solution architect Cominven

Re: Matching the beginning of a word within a term

2011-04-01 Thread Jan Høydahl
Check out http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.EdgeNGramFilterFactory Don't know if it works with phrases though -- Jan Høydahl, search solution architect Cominvent AS - www.cominvent.com On 31. mars 2011, at 16.49, Brian Lamb wrote: > No, I don't really want to brea

Re: Does solr support secure enterprise search?

2011-04-01 Thread Upayavira
On Fri, 01 Apr 2011 16:33 +0800, "m _ 米蟲ы~" wrote: > Hello, > Does solr support secure enterprise search? > That's to say, person can only visit to the concerns of the information > within their authorities. > If I wanna meet the goal, what can I do? I see you did ask this on solr-user, so I'll

Re: SolrException: No such core: core1

2011-04-01 Thread Amel Fraisse
ok, 1. http://localhost:8983/solr/ : return a page with Welcome to Solr! Solr Admin 2. when I clik on SolrAdmin I have this message: HTTP ERROR: 404 missing core name in path RequestURI=/solr/admin/index.jsp So , I don't have the core list Amel. 2011/4/1

Re: HTTP Status 500 - Severe errors in solr configuration change: false in null ------------------------------------------------------------- org

2011-04-01 Thread jim
Many thanks. the problem was solved with your help~~~ -- View this message in context: http://lucene.472066.n3.nabble.com/HTTP-Status-500-Severe-errors-in-solr-configuration-change-abortOnConfigurationError-false-abortOnCo6-tp2757494p2762692.html Sent from the Solr - User mailing list archive at

Comment Unused portions in solrconfig

2011-04-01 Thread rahul
Hi, I have indexed some terms in our solr and I only used Solr for searching purpose only. Currently, I dont use highlighting part (" and requesthandlers like '/spell', and queryResponseWriters (since I use solrj, it uses default javabin response writer). I have little bit concerned about, if I c

Re: SolrException: No such core: core1

2011-04-01 Thread Amel Fraisse
yes with this link : http://localhst:8983/solr/core1/admin I have the same message such : HTTP ERROR: 404 NOT_FOUND RequestURI=/solr/core1/admin Amel. 2011/4/1 Stefan Matheis > Amel, > > for visiting the admin-interface, just start with > http://host:port/solr - which will generate a list

Re: SolrException: No such core: core1

2011-04-01 Thread Amel Fraisse
Hi Stefan, This my solr.xml: . And when I visit the solr Admin Interface (http://0.0.0.0:8983/solr/admin/) I have this message: HTTP ERROR: 404 missing core name in path RequestURI=/solr/admin/index.jsp * Amel. * 2011/4/1 Stefan Matheis > Amel, > > how does your solr.xml look li

Re: SolrException: No such core: core1

2011-04-01 Thread Stefan Matheis
Amel, how does your solr.xml look like? and if you visit the Solr-Admin-Interface, are there Links for (at least) two cores listed? Regards STefan On Fri, Apr 1, 2011 at 10:41 AM, Amel Fraisse wrote: > Hello every body, > > I tried to run this code: > >       File f = new File ("./solr/solr.xml

SolrException: No such core: core1

2011-04-01 Thread Amel Fraisse
Hello every body, I tried to run this code: File f = new File ("./solr/solr.xml"); System.setProperty("solr.solr.home", "solr"); CoreContainer.Initializer initializer = new CoreContainer.Initializer(); CoreContainer coreContainer = initializer.initialize();

Does solr support secure enterprise search?

2011-04-01 Thread m _ 米蟲ы~
Hello, Does solr support secure enterprise search? That's to say, person can only visit to the concerns of the information within their authorities. If I wanna meet the goal, what can I do? Thanks for your help. -- Best wishes Zhenpeng Fang 方 振鹏 Dept. Software Eng

Re: Problems with DIH and missing fields.

2011-04-01 Thread Stefan Matheis
Marcelo, could you paste the relevant parts of your DIH config? Regards Stefan On Thu, Mar 31, 2011 at 9:55 PM, Marcelo Iturbe wrote: > Hello, > I have an XML which contains personal contacts. Not all contacts have the > same fields (email, phone, postal). > > The problem is that when certain f

Re: Highlight snippets for a set of known documents

2011-04-01 Thread Stefan Matheis
Jay, i'm not sure, but did you try it w/ brackets? q=foobar&fq={!q.op=OR}(id:1 id:5 id:11) Regards Stefan On Thu, Mar 31, 2011 at 6:40 PM, Jay Luker wrote: > Hi all, > > I'm trying to get highlight snippets for a set of known documents and > I must being doing something wrong because it's only

Fwd: how to set cookie for url requesting in stream_url

2011-04-01 Thread satya swaroop
HI Markus, I am using solr branch_3x, in tomcat web server Regards, satya