Re: Is SQL Like operator feature available in Apache Solr query

2011-11-01 Thread François Schiettecatte
Arshad Actually it is available, you need to use the ReversedWildcardFilterFactory which I am sure you can Google for. Solr and SQL address different problem sets with some overlaps but there are significant differences between the two technologies. Actually '%Solr%' is a worse case for SQL

Re: Is SQL Like operator feature available in Apache Solr query

2011-11-01 Thread Michael Kuhlmann
Hi, this is not exactly true. In Solr, you can't have the wildcard operator on both sides of the operator. However, you can tokenize your fields and simply query for Solr. This is what's Solr made for. :) -Kuli Am 01.11.2011 13:24, schrieb François Schiettecatte: Arshad Actually it is

Re: Is SQL Like operator feature available in Apache Solr query

2011-11-01 Thread François Schiettecatte
Kuli Good point about just tokenizing the fields :) I ran a couple of tests to double-check my understanding and you can have a wildcard operator at either or both ends of a term. Adding ReversedWildcardFilterFactory to your field analyzer will make leading wildcard searches a lot faster of

Re: Is SQL Like operator feature available in Apache Solr query

2011-11-01 Thread Erick Erickson
NGrams are often used in Solr for this case, but they will also add to your index size. It might be worthwhile to look closely at your user requirements before going ahead and supporting this functionality Best Erick 2011/11/1 François Schiettecatte fschietteca...@gmail.com: Kuli Good

Re: Is SQL Like operator feature available in Apache Solr query

2011-11-01 Thread Michael Kuhlmann
Am 01.11.2011 16:06, schrieb Erick Erickson: NGrams are often used in Solr for this case, but they will also add to your index size. It might be worthwhile to look closely at your user requirements before going ahead and supporting this functionality Best Erick My opinion. Wildcards are

Re: Is SQL Like operator feature available in Apache Solr query

2011-11-01 Thread Memory Makers
Eric, NGrams could you elaborate on that ? -- haven't seen that before. Thanks. On Tue, Nov 1, 2011 at 11:06 AM, Erick Erickson erickerick...@gmail.comwrote: NGrams are often used in Solr for this case, but they will also add to your index size. It might be worthwhile to look closely at

Re: Is SQL Like operator feature available in Apache Solr query

2011-11-01 Thread Erick Erickson
Start here: http://lucene.apache.org/solr/api/org/apache/solr/analysis/NGramFilterFactory.html But the idea is that you define a field with the NGramFilterFactory and it indexes, (here are bigrams) mysolrstuff as separate tokens: my ys so ol lr rs st tu uf ff. This supports the %solr% idea if

Regarding Solr Query

2011-10-27 Thread Sahoo, Jayanta
I have one query regarding solr search.I have one key words like wireleess mobilty kit i need to search,I am not able to get when i am doing the search.BUt when i have manually added in synonyms.txt file like[wirelss, wireless access.etc] i am able to search the product related to this

Re: Regarding Solr Query

2011-10-27 Thread Alireza Salimi
Can you explain more what's the fieldType, what's the actual content of the field in the document. Why are you trying to use synonyms? Regards On Thu, Oct 27, 2011 at 7:55 AM, Sahoo, Jayanta jayanta.sa...@hp.comwrote: I have one query regarding solr search.I have one key words like wireleess

Re: use lucene to create index(with synonym) and solr query index

2011-10-23 Thread Erick Erickson
-to-create-index-with-synonym-and-solr-query-index-tp3433124p3433124.html Sent from the Solr - User mailing list archive at Nabble.com.

use lucene to create index(with synonym) and solr query index

2011-10-18 Thread cmd
-index-with-synonym-and-solr-query-index-tp3433124p3433124.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: ANTLR SOLR query/filter parser

2011-09-22 Thread Roman Chyla
Hi, I agree that people can register arbitrary qparsers, however the question might have been understoo differently - about the ANLR parser that can handle what solr qparser does (and that one is looking at _query_: and similar stuff -- or at local params, which is what can be copypasted into the

how to differentiate multiple datasources when building solr query....

2011-08-26 Thread vighnesh
hi all I have a two data sources in data-config file and i need data from first datasource , second datasource and from both .how can acheive this in solr query. example like: first datasource: http://localhost:8983/solr/db/select/?q=newthreadversion=2.2start=0rows=200indent=ondatasource

Re: how to differentiate multiple datasources when building solr query....

2011-08-26 Thread Lance Norskog
Did you mean datasource-1 and datasource-2 ? On Fri, Aug 26, 2011 at 2:41 AM, vighnesh svighnesh...@gmail.com wrote: hi all I have a two data sources in data-config file and i need data from first datasource , second datasource and from both .how can acheive this in solr query. example

Re: how to differentiate multiple datasources when building solr query....

2011-08-26 Thread vighnesh
yes those are two data-sources name . how can i get the data from only datasource-1 or from data source-2 or from both -- View this message in context: http://lucene.472066.n3.nabble.com/how-to-differentiate-multiple-datasources-when-building-solr-query-tp3286309p3286325.html Sent from the Solr

Re: how to differentiate multiple datasources when building solr query....

2011-08-26 Thread Erik Hatcher
, vighnesh wrote: hi all I have a two data sources in data-config file and i need data from first datasource , second datasource and from both .how can acheive this in solr query. example like: first datasource: http://localhost:8983/solr/db/select/?q=newthreadversion=2.2start=0rows

Re: how to differentiate multiple datasources when building solr query....

2011-08-26 Thread Erick Erickson
-config file and i need data from first datasource , second datasource and from both .how can acheive this in solr query. example like: first datasource: http://localhost:8983/solr/db/select/?q=newthreadversion=2.2start=0rows=200indent=ondatasource=datasource-1 example like: second datasource

Re: how to differentiate multiple datasources when building solr query....

2011-08-26 Thread vighnesh
thanx for giving response i am unable to configure this please provide any samples code for how to use template transformer -- View this message in context: http://lucene.472066.n3.nabble.com/how-to-differentiate-multiple-datasources-when-building-solr-query-tp3286309p3286816.html Sent from

Re: ANTLR SOLR query/filter parser

2011-08-17 Thread Chris Hostetter
: I'm looking for an ANTLR parser that consumes solr queries and filters. : Before I write my own, thought I'd ask if anyone has one they are : willing to share or can point me to one? I'm pretty sure that this will be imposisble to do in the general case -- arbitrary QParser instances (that

Problem with making Solr query

2011-08-05 Thread dhryvastov
to get the expected results? I feel that I have omitted something simple but it is the second day that I can't found what. Please help. Thanks for your response. -- View this message in context: http://lucene.472066.n3.nabble.com/Problem-with-making-Solr-query-tp3228877p3228877.html Sent from

Re: Problem with making Solr query

2011-08-05 Thread dhryvastov
-with-making-Solr-query-tp3228877p3228885.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Problem with making Solr query

2011-08-05 Thread Bill Bell
results? I feel that I have omitted something simple but it is the second day that I can't found what. Please help. Thanks for your response. -- View this message in context: http://lucene.472066.n3.nabble.com/Problem-with-making-Solr-query-tp3228877p3228877.html Sent from the Solr

Re: Problem with making Solr query

2011-08-05 Thread lboutros
to the text_en field type. Another thing, in your query you are using the default field. Try this one: http://localhost:8983/solr/db/select/?q=title:implementation Ludovic. - Jouve France. -- View this message in context: http://lucene.472066.n3.nabble.com/Problem-with-making-Solr-query

Re: Problem with making Solr query

2011-08-05 Thread dhryvastov
Thank you Bill and Ludovic! I changed field type to text instead of string and now it is working perfectly! Thank you very much for such a quick help!!! -- View this message in context: http://lucene.472066.n3.nabble.com/Problem-with-making-Solr-query-tp3228877p3228941.html Sent from the Solr

ANTLR SOLR query/filter parser

2011-08-01 Thread Scott Smith
I'm looking for an ANTLR parser that consumes solr queries and filters. Before I write my own, thought I'd ask if anyone has one they are willing to share or can point me to one? Thanks Scott

Re: chinese SOLR query parser

2011-05-23 Thread Michael McCandless
--- On Sat, 5/21/11, Michael McCandless luc...@mikemccandless.com wrote: From: Michael McCandless luc...@mikemccandless.com Subject: Re: chinese SOLR query parser To: solr-user@lucene.apache.org Date: Saturday, May 21, 2011, 6:14 PM Unfortunately, Solr's defaults (example schema

chinese SOLR query parser

2011-05-21 Thread Pradeep Pujari
Hi, I made changes to schema.xml with CJKAnalyzer. Does naything else required to change in solrconfig.xml for query parser component. Because, I do not get any result back while searching? Looks like the chinese characters are being encoded unable to match in the index. Any help is highly

Re: chinese SOLR query parser

2011-05-21 Thread Michael McCandless
Unfortunately, Solr's defaults (example schema) are unusable for non-whitespace languages... see: http://markmail.org/thread/ww6mhfi3rfpngmc5 So it could be you need to turn off autoGeneratePhraseQueries in your fieldType? We are working towards fixing the example schema (for 3.2/4.0) in

Re: chinese SOLR query parser

2011-05-21 Thread Andy
Is there any example schema for Chinese that I could use as a guide right now? Thanks --- On Sat, 5/21/11, Michael McCandless luc...@mikemccandless.com wrote: From: Michael McCandless luc...@mikemccandless.com Subject: Re: chinese SOLR query parser To: solr-user@lucene.apache.org Date

Re: have a question on solr query

2011-04-24 Thread Otis Gospodnetic
:: http://search-lucene.com/ From: Ramamurthy, Premila premila.ramamur...@travelocity.com To: solr-...@lucene.apache.org solr-...@lucene.apache.org Sent: Tue, April 12, 2011 11:24:28 AM Subject: have a question on solr query I have a field DestinationId and it can take values ‘123 123’ or ‘456’ I

Solr query POST and not in GET

2011-03-15 Thread Gastone Penzo
Hi, is possible to change Solr sending query method from get to post? because my query has a lot of OR..OR..OR and the log says to me Request URI too large Where can i change it?? thanx -- Gastone Penzo www.solr-italia.it The first italian blog about SOLR

Re: Solr query POST and not in GET

2011-03-15 Thread Geert-Jan Brits
Yes it's possible. Assuming your using SolrJ as a client-library: set: QueryRequest req = new QueryRequest(); req.setMethod(METHOD.POST); Any other client-library should have a similar method. hth, Geert-Jan 2011/3/15 Gastone Penzo gastone.pe...@gmail.com Hi, is possible to change Solr

Re: Solr query POST and not in GET

2011-03-15 Thread Upayavira
Please do not cross-post between lists - yours seems like a user query to me, so I'm answering it here. As to your question - Solr does not select the request method - you do. I've just tested it and Solr happily accepts a query via a POST request. However, you'd probably do well to look at

Solr Query

2011-03-15 Thread Vishal Patel
I am a bit new for Solr. I am running below query in query browser admin interface +RetailPriceCodeID:1 +MSRP:[16001.00 TO 32000.00] I think it should return only results with RetailPriceCode = 1 ad MSRP between 16001 and 32000. But it returns all resuts with MSRP = 1 and doesnt consider 2nd

Re: Solr Query

2011-03-15 Thread Geert-Jan Brits
But it returns all resuts with MSRP = 1 and doesnt consider 2nd query at all. I believe you mean: 'it returns all results with RetailPriceCodeID = 1 while ignoring the 2nd query?' If so, please check that your default operator is set to AND in your schema config. Other than that, your syntax

Re: QTime Solr Query

2011-02-10 Thread Erick Erickson
Let's see what the queries are. If you're searching for single terms that don't match many docs that's one thing. If you're looking at many terms that match many documents, I'd expect larger numbers. Unless you're hitting the document cache and not searching at all Best Erick On Thu, Feb

Re: QTime Solr Query

2011-02-10 Thread didier deshommes
On Thu, Feb 10, 2011 at 4:08 PM, Stijn Vanhoorelbeke stijn.vanhoorelb...@gmail.com wrote: Hi, I've done some stress testing onto my solr system ( running in the ec2 cloud ). From what I've noticed during the tests, the QTime drops to just 1 or 2 ms ( on a index of ~2 million documents ).

Solr query to get results based on the word length (letter count)

2010-12-22 Thread Giri
Hi, I have a solar index that has thousands of records, the title is one of the solar fields, and I would like to query for title values that are less than 50 characters long. Is there a way to construct the Solr query to provide results based on the character length? thank you very much!

Re: Solr query to get results based on the word length (letter count)

2010-12-22 Thread Gora Mohanty
On Wed, Dec 22, 2010 at 9:06 PM, Giri giriprak...@gmail.com wrote: Hi, I have a solar index that has thousands of records, the title is one of the solar fields, and I would like to query for title values that are less than 50 characters long. Is there a way to construct the Solr query

Re: Solr query to get results based on the word length (letter count)

2010-12-22 Thread Jonathan Rochkind
is in the index. On 12/22/2010 10:36 AM, Giri wrote: Hi, I have a solar index that has thousands of records, the title is one of the solar fields, and I would like to query for title values that are less than 50 characters long. Is there a way to construct the Solr query to provide results based

About Solr Query help

2010-11-25 Thread Himanshu Tatariya
Hello, Greetings ! I am working on one project which is used solr search facilities and its is good for searching and indexing it. I have one query regarding searching facets, so please guide me. I search color just for example : *attr_color_sm:blue* which i send in query but now I want

Re: About Solr Query help

2010-11-25 Thread Ahmet Arslan
--- On Thu, 11/25/10, Himanshu Tatariya himansh...@elantechnologies.com wrote: From: Himanshu Tatariya himansh...@elantechnologies.com Subject: About Solr Query help To: solr-user@lucene.apache.org Date: Thursday, November 25, 2010, 4:02 PM Hello, Greetings ! I am working on one

urgent SOLR query server request hangs

2010-09-27 Thread Bharat Jain
Hi, We are running into issues with SOLR queries. Our solr queries just hang. We are using SOLR 1.3 and below is the stack trace from threaddump. We are clueless about what can be causing this issue. We are in the midst of firefighting with our customer and any help is appreciated.

Re: Get all results from a solr query

2010-09-17 Thread Christopher Gross
@Markus Jelsma - the wiki confirms what I said before: rows This parameter is used to paginate results from a query. When specified, it indicates the maximum number of documents from the complete result set to return to the client for every request. (You can consider it as the maximum number of

Re: Get all results from a solr query

2010-09-17 Thread kenf_nc
=blahstart=(numFound/4*3)rows=numFound/4) (not sure my math is right, did it quickly, but you get the point). Anyway, having that number can be very useful for more than just knowing max results. Ken -- View this message in context: http://lucene.472066.n3.nabble.com/Get-all-results-from-a-solr

Re: Get all results from a solr query

2010-09-17 Thread Walter Underwood
Go ahead and put an absurdly large value as the rows parameter. Then wait, because that query is going to take a really long time, it can interfere with every other query on the Solr server (denial of service), and quite possibly cause your client to run out of memory as it parses the result.

Re: Get all results from a solr query

2010-09-17 Thread Christopher Gross
Thanks for being so helpful! You really helped me to answer my question! You aren't condescending at all! I'm not using it to pull down *everything* that the Solr instance stores, just a portion of it. Currently, I need to get 16 records at once, not just the 10 that show. So I have the rows

Re: Get all results from a solr query

2010-09-17 Thread Lance Norskog
Look up _docid_ on the Solr wiki. It lets you walk the entire index about as fast as possible. On Fri, Sep 17, 2010 at 8:47 AM, Christopher Gross cogr...@gmail.com wrote: Thanks for being so helpful!  You really helped me to answer my question!  You aren't condescending at all! I'm not using

Re: Get all results from a solr query

2010-09-17 Thread Chris Hostetter
: stores, just a portion of it. Currently, I need to get 16 records at : once, not just the 10 that show. So I have the rows set to 99 for : the testing phase, and I can increase it later. I just wanted to have : a better way of getting all the results that didn't require hard : coding a value.

Get all results from a solr query

2010-09-16 Thread Christopher Gross
I have some queries that I'm running against a solr instance (older, 1.2 I believe), and I would like to get *all* the results back (and not have to put an absurdly large number as a part of the rows parameter). Is there a way that I can do that? Any help would be appreciated. -- Chris

Re: Get all results from a solr query

2010-09-16 Thread Shashi Kant
q=*:* On Thu, Sep 16, 2010 at 4:39 PM, Christopher Gross cogr...@gmail.com wrote: I have some queries that I'm running against a solr instance (older, 1.2 I believe), and I would like to get *all* the results back (and not have to put an absurdly large number as a part of the rows parameter).

Re: Get all results from a solr query

2010-09-16 Thread Christopher Gross
That will stil just return 10 rows for me. Is there something else in the configuration of solr to have it return all the rows in the results? -- Chris On Thu, Sep 16, 2010 at 4:43 PM, Shashi Kant sk...@sloan.mit.edu wrote: q=*:* On Thu, Sep 16, 2010 at 4:39 PM, Christopher Gross

RE: Re: Get all results from a solr query

2010-09-16 Thread Markus Jelsma
results from a solr query That will stil just return 10 rows for me.  Is there something else in the configuration of solr to have it return all the rows in the results? -- Chris On Thu, Sep 16, 2010 at 4:43 PM, Shashi Kant sk...@sloan.mit.edu wrote: q=*:* On Thu, Sep 16, 2010 at 4:39 PM

Re: Get all results from a solr query

2010-09-16 Thread Shashi Kant
Start with a *:*, then the “numFound” attribute of the result element should give you the rows to fetch by a 2nd request. On Thu, Sep 16, 2010 at 4:49 PM, Christopher Gross cogr...@gmail.com wrote: That will stil just return 10 rows for me.  Is there something else in the configuration of solr

Re: Get all results from a solr query

2010-09-16 Thread Scott Gonyea
If you want to do it in Ruby, you can use this script as scaffolding: require 'rsolr' # run `gem install rsolr` to get this solr  = RSolr.connect(:url = 'http://ip-10-164-13-204:8983/solr') total = solr.select({:rows = 0})[response][numFound] rows  = 10 query = {   :rows   = rows,   :start  =

Re: Get all results from a solr query

2010-09-16 Thread Scott Gonyea
lol, note to self: scratch out IPs. Good thing firewalls exist to keep my stupidity at bay. Scott On Thu, Sep 16, 2010 at 2:55 PM, Scott Gonyea sc...@aitrus.org wrote: If you want to do it in Ruby, you can use this script as scaffolding: require 'rsolr' # run `gem install rsolr` to get this

Re: Solr query result cache size and expire property

2010-08-12 Thread Chris Hostetter
: please help - how can I calculate queryresultcache size (how much RAM should : be dedicated for that). I have 1,5 index size, 4 mio docs. : QueryResultWindowSize is 20. : Could I use expire property on the documents in this cache? There is no expire property, items are automaticly removed from

SOLR Query

2010-08-12 Thread Moiz Bhukhiya
Hi there, I've a problem querying SOLR for a specific field with a query string that contains spaces. I added following lines in the schema.xml to add my own defined fields. Fields are: ap_name, ap_address, ap_dob, ap_desg, ap_sec. Since all these fields are beginning with ap_, I included the

Re: SOLR Query

2010-08-12 Thread Erick Erickson
You'll get a lot of insight into what's actually happening if you append debugQuery=true to your queries, or check the debug checkbox in the solr admin page. But I suspect (and it's a guess since you haven't included your schema) that your problem is that you're mixing explicit and default

Re: SOLR Query

2010-08-12 Thread Moiz Bhukhiya
I tried ap_address:(tom+cruise) and that worked. I am sure its the same problem as you suspected! Thanks a lot Erick( users!) for your time. Moiz On Thu, Aug 12, 2010 at 8:51 PM, Erick Erickson erickerick...@gmail.comwrote: You'll get a lot of insight into what's actually happening if you

Re: solr query result not read the latest xml file

2010-08-11 Thread Jan Høydahl / Cominvent
an example tool so what should I use if not post.jar for production? btw, I already tried using this command: java -Durl=http://localhost:8983/search/update -jar post.jar cat_817.xml and IT WORKS !! the cat_817.xml reflected directly in the solr query after I commit the cat_817.xml

Re: solr query result not read the latest xml file

2010-08-10 Thread Ahmet Arslan
hi everyone, I do these steps every time the new xml file created (for example cat_978.xml has just been created): 1. delete the index (deletequeryAUC_CAT:978/query/delete) 2. commit the new cat_978.xml (java -jar post.jar cat_978.xml) 3. restart the java (stop and java -jar start.jar)

Re: solr query result not read the latest xml file

2010-08-10 Thread e8en
I already set in my solrconfig.xml as you told me: httpCaching never304=false/httpCaching and then I commit the xml and it's still not working the query result still show the old data :( do you have any suggestion? Eben -- View this message in context: http://lucene.472066.n3.nabble.com/solr

Re: solr query result not read the latest xml file

2010-08-10 Thread Ahmet Arslan
I already set in my solrconfig.xml as you told me: httpCaching never304=false/httpCaching and then I commit the xml and it's still not working the query result still show the old data :( do you have any suggestion? Shouldn't it be never304=true? You wrote never304=false Additionally

AW: solr query result not read the latest xml file

2010-08-10 Thread Bastian Spitzer
make sure you send a commit/ after add/delete to make the changes visible. -Ursprüngliche Nachricht- Von: e8en [mailto:e...@tokobagus.com] Gesendet: Dienstag, 10. August 2010 10:04 An: solr-user@lucene.apache.org Betreff: Re: solr query result not read the latest xml file I already set

Re: solr query result not read the latest xml file

2010-08-10 Thread e8en
yes I try with both value, never304=true and never304=false and none of them make it works what is curl and wget? I use mozilla firefox browser I'm really newbie in programming world especially solr -- View this message in context: http://lucene.472066.n3.nabble.com/solr-query-result-not-read

Re: AW: solr query result not read the latest xml file

2010-08-10 Thread e8en
hi Bastian, how to send a commit/? is it by typing : java -jar post.jar cat_978.xml? if yes then I've already done that any solution please? -- View this message in context: http://lucene.472066.n3.nabble.com/solr-query-result-not-read-the-latest-xml-file-tp1066785p1068782.html Sent from

Re: solr query result not read the latest xml file

2010-08-10 Thread Ahmet Arslan
yes I try with both value, never304=true and never304=false and none of them make it works It must be httpCaching never304=true /httpCaching, so lets forget about never304=false. But when you change something in solrconfig.xml you need to restart jetty/tomcat. java -jar post.jar *.xml does

AW: AW: solr query result not read the latest xml file

2010-08-10 Thread Bastian Spitzer
: solr query result not read the latest xml file hi Bastian, how to send a commit/? is it by typing : java -jar post.jar cat_978.xml? if yes then I've already done that any solution please? -- View this message in context: http://lucene.472066.n3.nabble.com/solr-query-result-not-read-the-latest

Re: solr query result not read the latest xml file

2010-08-10 Thread e8en
not search.war -- View this message in context: http://lucene.472066.n3.nabble.com/solr-query-result-not-read-the-latest-xml-file-tp1066785p1070189.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: solr query result not read the latest xml file

2010-08-10 Thread Jan Høydahl / Cominvent
solr.war not search.war -- View this message in context: http://lucene.472066.n3.nabble.com/solr-query-result-not-read-the-latest-xml-file-tp1066785p1070189.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: solr query result not read the latest xml file

2010-08-10 Thread e8en
directly in the solr query after I commit the cat_817.xml, this is the url: http://localhost:8983/search/select/?q=ITEM_CAT:817version=2.2start=0rows=10indent=on the problem is it works if the old xml contain less doc than the new xml, for example if the old cat_817.xml contain 2 doc and the new cat_817

solr query result not read the latest xml file

2010-08-09 Thread e8en
, Eben -- View this message in context: http://lucene.472066.n3.nabble.com/solr-query-result-not-read-the-latest-xml-file-tp1066785p1066785.html Sent from the Solr - User mailing list archive at Nabble.com.

SOLR QUERY

2010-08-06 Thread Moiz Bhukhiya
Hello there, I am pretty much new to SOLR and my question is about querying SOLR. Beginning from what I am doing: I have updated the index with the following SOLR document: *add doc field name=idname-2/field field name=ap_firstNameMoiz/field **field

Re: SOLR QUERY

2010-08-06 Thread kenf_nc
in your schema to move ap_* fields to the default search field. -- View this message in context: http://lucene.472066.n3.nabble.com/SOLR-QUERY-tp1031554p1031567.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: SOLR QUERY

2010-08-06 Thread Jan Høydahl / Cominvent
is the one searched if you don't specify one in the query. You can explicitly put something there with an add or you can have a copyField directive in your schema to move ap_* fields to the default search field. -- View this message in context: http://lucene.472066.n3.nabble.com/SOLR-QUERY

Solr query result cache size and expire property

2010-08-03 Thread blah blah blah
Hi all! please help - how can I calculate queryresultcache size (how much RAM should be dedicated for that). I have 1,5 index size, 4 mio docs. QueryResultWindowSize is 20. Could I use expire property on the documents in this cache? regards, Stanislaw

Solr: query in admin and where is my data?

2010-06-16 Thread cstc
Dear Solr gurus, I am still currently running a script which says that the Solr software is still commiting the data: == INFO: [] Registered new searcher searc...@3b48a17a main Jun 16, 2010 12:56:58 PM org.apache.solr.search.SolrIndexSearcher close INFO: Closing

Re: Solr: query in admin and where is my data?

2010-06-16 Thread Otis Gospodnetic
/ :: Solr - Lucene - Nutch Lucene ecosystem search :: http://search-lucene.com/ - Original Message From: c...@swansea.ac.uk c...@swansea.ac.uk To: solr-user@lucene.apache.org Sent: Wed, June 16, 2010 8:02:30 AM Subject: Solr: query in admin and where is my data? Dear Solr gurus, I

Re: Solr: query in admin and where is my data?

2010-06-16 Thread cstc
. Otis Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch Lucene ecosystem search :: http://search-lucene.com/ - Original Message From: c...@swansea.ac.uk c...@swansea.ac.uk To: solr-user@lucene.apache.org Sent: Wed, June 16, 2010 8:02:30 AM Subject: Solr: query

Re: Solr: query in admin and where is my data?

2010-06-16 Thread Otis Gospodnetic
r.s.lara...@swansea.ac.uk; Max Wilson m.l.wil...@swansea.ac.uk Sent: Wed, June 16, 2010 9:32:35 AM Subject: Re: Solr: query in admin and where is my data? Hello, Thank you for your help. Q1: Do I have to wait until all the data is fully committed before querying? Q2: I put '*:*' (without quotes

Re: solr Query taking a huge time

2010-05-12 Thread kishan
( which have default cache as fieldValueCache ) Tq Very Much For all Your Suggestions . Thanks, Prasad -- View this message in context: http://lucene.472066.n3.nabble.com/solr-Query-taking-a-huge-time-tp809501p814226.html Sent from the Solr - User mailing list archive at Nabble.com.

solr Query taking a huge time

2010-05-11 Thread kishan
help, thanks in advance. -- View this message in context: http://lucene.472066.n3.nabble.com/solr-Query-taking-a-huge-time-tp809501p809501.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: solr Query taking a huge time

2010-05-11 Thread Erick Erickson
is taking some huge time like 6-9 secs . How can i decrease this time , because i can hit similar queries multiple times which will reduce the performance. Please help, thanks in advance. -- View this message in context: http://lucene.472066.n3.nabble.com/solr-Query-taking-a-huge-time

Re: solr Query taking a huge time

2010-05-11 Thread kishan
in context: http://lucene.472066.n3.nabble.com/solr-Query-taking-a-huge-time-tp809501p811705.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr query parser doesn't invoke analyzer for simple term query?

2010-03-18 Thread Chris Hostetter
: It seems that Solr's query parser doesn't pass a single term query no ... the query parser always uses the analyzer for text regardless of wether it's a single term or not (it doesnt' even know if it's a single term until the Analyzer tells it) cases where the analyzer isn't used are things

Re: Solr query parser doesn't invoke analyzer for simple term query?

2010-03-18 Thread Chris Hostetter
: : Thank you, Marco. I see the debug out put that looks like: : str name=rawquerystringtitle_jpn:2001年/str : str name=querystringtitle_jpn:2001年/str : str name=parsedqueryPhraseQuery(title_jpn:2001 年)/str : str name=parsedquery_toStringtitle_jpn:2001 年/str ... : Does this mean the

Re: Solr query parser doesn't invoke analyzer for simple term query?

2010-03-17 Thread Marco Martinez
Hello, You can see what happen (which analyzer are used for this field and which is the output of the analyzers) with this search using the analysis page of the solr default web page. I assume you are using the same analyzers and tokenizers in indexing and searching for this field in your schema.

Solr query parser doesn't invoke analyzer for simple term query?

2010-03-16 Thread Teruhiko Kurosaka
It seems that Solr's query parser doesn't pass a single term query to the Analyzer for the field. For example, if I give it 2001年 (year 2001 in Japanese), the searcher returns 0 hits but if I quote them with double-quotes, it returns hits. In this experiment, I configured schema.xml so that the

problem during benchmarking solr query

2010-03-16 Thread KshamaPai
-benchmarking-solr-query-tp27926801p27926801.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: problem during benchmarking solr query

2010-03-16 Thread Lance Norskog
that entire query is considered as uri  and also solr respond with appropriate reply. thank you. -- View this message in context: http://old.nabble.com/problem-during-benchmarking-solr-query-tp27926801p27926801.html Sent from the Solr - User mailing list archive at Nabble.com. -- Lance

Re: Solr query parsing

2010-03-04 Thread Chris Hostetter
: Why would fq=sdate:+20100110 parse via a Solr server but not via : QueryParsing.parseQuery? Its choking on the + symbol in the sdate : value. is it something as simple as the fact that with a Solr Server the + is a URL escaped ? hard to say w/o knowing qhatr exactly it is you are doing.

Solr query parsing

2010-03-03 Thread Jason Rutherglen
Why would fq=sdate:+20100110 parse via a Solr server but not via QueryParsing.parseQuery? Its choking on the + symbol in the sdate value. I'd use QParserPlugin however it requires passing a SolrQueryRequest, which is not kosher for testing, perhaps I'll need to bite the bullet and reproduce

Re: Solr query single entity?

2010-01-21 Thread Shalin Shekhar Mangar
On Wed, Jan 20, 2010 at 9:47 PM, fredanthony fredanth...@gmail.com wrote: Hi, I have Solr setup to use a DataImportHandler with my database. In the data-config.xml file I have one document with two entities as follows: document entity name=users

Solr query single entity?

2010-01-20 Thread fredanthony
a single entity. Im not sure if this is the right way to do it. Maybe I need multiple indexes? I just need to limit the results in certain sections, for example a user section to return only users and not groups and vice-versa. Thanks! -- View this message in context: http://old.nabble.com/Solr

solr query search : flow of execution.

2009-12-31 Thread Smith G
Hello All, I have no complete knowledge of query execution workflow . I have an issue. I had one approach to edit all the user submitted queries in the queryparser part ( for every request ), but later I was suggested to do query modification only if the user submitted query has no

Re: solr query search : flow of execution.

2009-12-31 Thread Erik Hatcher
My first recommendation would be to do this client-side, just search again with a new query if there are zero results returned. However, you can accomplish what you're after with custom QueryComponent, subclassing the default one, call super, check the count, if zero, adjust the query and

Re: solr query help alpha numeric and not

2009-11-05 Thread Joel Nylund
Hi yes its a string, in the case of a title, it can be anything, a letter a number, a symbol or a multibyte char etc. Any ideas if I wanted a query that was not a letter a-z or a number 0-9, given that its a string? thanks Joel On Nov 4, 2009, at 9:10 AM, Jonathan Hendler wrote: Hi

Re: solr query help alpha numeric and not

2009-11-05 Thread Avlesh Singh
Didn't the queries in my reply work? Cheers Avlesh On Fri, Nov 6, 2009 at 4:16 AM, Joel Nylund jnyl...@yahoo.com wrote: Hi yes its a string, in the case of a title, it can be anything, a letter a number, a symbol or a multibyte char etc. Any ideas if I wanted a query that was not a letter

Re: solr query help alpha numeric and not

2009-11-05 Thread Joel Nylund
Avlesh, thanks those worked, for somre reason I never got your mail, found it in one of the list archives though. thanks again Joel On Nov 5, 2009, at 9:08 PM, Avlesh Singh wrote: Didn't the queries in my reply work? Cheers Avlesh On Fri, Nov 6, 2009 at 4:16 AM, Joel Nylund

<    2   3   4   5   6   7   8   >