Disable Solr Admin Page To Access on Client Browser....

2008-01-10 Thread Laxmilal Menaria
Hello everyone, I have implemented Solr with Tomcat for Multiple webapp, and I am access using code in application, now I want to disable the Admin page for access on browser, so how can do it. Please let me know.. -- Thanks in advance, Laxmilal menaria http://www.chambal.com/ http://www.minaly

Delte by multiple id problem

2008-01-10 Thread farhanali
I have deleted single id by sending delete command to solr server but getting error when i try to delete multiple id's. 2 3 4 is it the right syntax?? any body have some idea. -- View this message in context: http://www.nabble.com/Delte-by-multiple-id-problem-tp14733135p14733135.html Sent fro

Re: PhraseQuery and WildcardQuery

2008-01-10 Thread Traut
Thank you for the clarification. On Jan 8, 2008 10:43 AM, Chris Hostetter <[EMAIL PROTECTED]> wrote: > : I've got this error when trying to search query like q=+myFiled:"some > : value"* > : > : org.apache.solr.core.SolrException: Query parsing error: Cannot parse > : '+myFiled:"some value"*': '*

Dynamic fields & Facets

2008-01-10 Thread Matthew Runo
Hello folks! I have a small dilemma, and was wondering if anyone would lend some guidance. I have a field, called "attributeFacet", and it has lots of things like... Upper Materials/Finishes - Suede Upper Materials/Finishes - Canvas Upper Materials/Finishes - Synthetic Upper Materials/Finis

Re: Dynamic fields & Facets

2008-01-10 Thread Ryan McKinley
Best case: I can do some sort of "addFacetField("attribute_*") magic. https://issues.apache.org/jira/browse/SOLR-247 but i don't think there is any progress on it ryan

Re: Dynamic fields & Facets

2008-01-10 Thread Matthew Runo
I see a patch with that ticket from you - that seems to support the use case of *, but not things otherwise containing a *, such as attribute_*. I suppose it's not a big deal to look up the attributes from our DB and go from there, I was just looking for a way to do it all in Solr if poss

Re: Delte by multiple id problem

2008-01-10 Thread Norberto Meijome
On Thu, 10 Jan 2008 05:28:52 -0800 (PST) farhanali <[EMAIL PROTECTED]> wrote: > I have deleted single id by sending delete command to solr server but getting > error when i try to delete multiple id's. > > 2 > 3 > 4 > > > is it the right syntax?? > any body have some idea. AFAIK, at this time,

Re: Delte by multiple id problem

2008-01-10 Thread Otis Gospodnetic
or delete by query where the query is an OR query with unique IDs identifying each of the documents to delete. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: Norberto Meijome <[EMAIL PROTECTED]> To: solr-user@lucene.apache.org Cc: [EMAI

Re: Dynamic fields & Facets

2008-01-10 Thread Erik Hatcher
Solr Flare solves this by first doing a cool hand Luke request handler query to get all the field names, and then in search requests it facets on facet_* but by adding each of those to the HTTP request params. A Solr-side capability to do it is well warranted in my opinion, I just haven't

Re: Dynamic fields & Facets

2008-01-10 Thread Matthew Runo
It would be nice to have the functionality in solr's core... Unfortunately I am not qualified to hack on that code =\ Thanks! Matthew Runo Software Developer Zappos.com 702.943.7833 On Jan 10, 2008, at 12:23 PM, Erik Hatcher wrote: Solr Flare solves this by first doing a cool hand Luke reque

Re: Delte by multiple id problem

2008-01-10 Thread Leonardo Santagada
On 10/01/2008, at 17:04, Norberto Meijome wrote: On Thu, 10 Jan 2008 05:28:52 -0800 (PST) farhanali <[EMAIL PROTECTED]> wrote: I have deleted single id by sending delete command to solr server but getting error when i try to delete multiple id's. 2 3 4 is it the right syntax?? any body h

Big number of conditions of the search

2008-01-10 Thread Evgeniy Strokin
Hello, I don't know how to formulate this right, I'll give an example: I have 20 millions documents with unique ID indexed. I have list of IDs stored somewhere. I need to run query which will take documents with ID from my list and gives me some statistic. For example: my documents are addresses

Re: Delte by multiple id problem

2008-01-10 Thread Ryan McKinley
eg 2 3 4 Can this be done on the same request? Because I am sending them on diferent requests... wich suck... already dividing inserts and deletes in 2 requests is bad enough. In 1.2, you have to do one command/request in 1.3 you can do multiple: See SOLR-133 in http://svn.apache.org/re

Re: Delte by multiple id problem

2008-01-10 Thread Chris Hostetter
: Can this be done on the same request? Because I am sending them on diferent : requests... wich suck... already dividing inserts and deletes in 2 requests is : bad enough. if you use persistent HTTP connections (ie: keep-alive) the network overhead goes away, and there should be negligable diff

Solr schema filters

2008-01-10 Thread Brian Artiaco
I'm kinda under the gun for this problem, and I thought that I would be able to solve this problem using the different Tokenizers and Query Analyzers that come with Solr, but I seem to be running into a brick wall. I'm currently using Acts_as_solr 0.9. So my requirements of my project is this: I

Re: Delte by multiple id problem

2008-01-10 Thread Leonardo Santagada
On 10/01/2008, at 22:51, Chris Hostetter wrote: : Can this be done on the same request? Because I am sending them on diferent : requests... wich suck... already dividing inserts and deletes in 2 requests is : bad enough. if you use persistent HTTP connections (ie: keep-alive) the network

Re: Big number of conditions of the search

2008-01-10 Thread Otis Gospodnetic
Evgeniy - sound like a problem best suited for RDBMS, really. You can run such an OR query, but you'll have to manually increase the max number of clauses allowed (in one of the configs) and make sure the JVM has plenty of memory. But again, this is best done in RDBMS with some count(*) and GR

Fwd: Solr "Text" field

2008-01-10 Thread Abin Shahab
Hi, I am having a lot of issues with the simple solr.textField. I do not get anything back from simple lucene queries such as wildcard searches. Searching for AR* does not return everything that starts with AR(for example Arizona). I turned on debugging, and it returned me the following: instit

Re: Fwd: Solr "Text" field

2008-01-10 Thread Otis Gospodnetic
Try Ar*, that should work if the original text had "Arizona" in it. This is covered in the Lucene FAQ, actually. :) Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: Abin Shahab <[EMAIL PROTECTED]> To: solr-user@lucene.apache.org Sent: Friday, Jan

Re: Fwd: Solr "Text" field

2008-01-10 Thread Abin Shahab
Thanks for responding. The original text has ARIZONA in it. I am using the example solrConfig.xml. Can the request handlers be part of the issue? I'm thinking of taking out everything except the standard request handler. On Jan 10, 2008 10:50 PM, Otis Gospodnetic <[EMAIL PROTECTED]> wrote: > Try

Re: Fwd: Solr "Text" field

2008-01-10 Thread Abin Shahab
if I search for name:"AR*", I get 1 result with the word AR in it, and the following debug output. Seems like it is throwing out my wildcard. institution.name:"AR*" institution.name:"AR*" institution.name:ar institution.name:ar − − 4.1522017 = (MATCH) fieldWeight(institution.name:ar in

Re: Delte by multiple id problem

2008-01-10 Thread farhanali
ryantxu wrote: > > >>> eg >>> 2 >>> 3 >>> 4 >> >> Can this be done on the same request? Because I am sending them on >> diferent requests... wich suck... already dividing inserts and deletes >> in 2 requests is bad enough. >> > > In 1.2, you have to do one command/request in 1.3 you can d