Re: wildcards and German umlauts

2011-05-29 Thread mdz-munich
Hi, "if i type complete word (such as "übersicht"). But there are no hits, if i use wildcards (such as "über*") Searching with wildcards and without umlauts works as well." I can confirm that. Greetz, Sebastian -- View this message in context: http://lucene.472066.n3.nabble.com/wildcards-an

Re: wildcards and German umlauts

2011-05-29 Thread mdz-munich
Ah, BTW, since the problem seems to be a query-parser-issue a simple workarround could be done by simple replace all Umlauts with ASCII-Characters (ä = ae, ö = oe, ü = ue for example) before sending the query to Solr and use a solr.MappingCharFilterFactory with the same replacements (ä = ae, ö = o

Re: wildcards and German umlauts

2011-05-29 Thread Markus Jelsma
Wildcard queries are not passed through an analyzer. > Ah, BTW, > > since the problem seems to be a query-parser-issue a simple workarround > could be done by simple replace all Umlauts with ASCII-Characters (ä = ae, > ö = oe, ü = ue for example) before sending the query to Solr and use a > solr.

Re: Results with and without whitspace(soccer club and soccerclub)

2011-05-29 Thread Erick Erickson
You might use the "replace" mapping for things like "soccerclub => soccer club" rather than mutual synonyms Use the analysis page from the admin console to understand what transformations are possible with various syntaxes, then you'll be in a place to decide the details. Best Erick On Tue, May

Re: wildcards and German umlauts

2011-05-29 Thread mdz-munich
I don't get you. Did I wrote something of an Analyzer? Actually not. -- View this message in context: http://lucene.472066.n3.nabble.com/wildcards-and-German-umlauts-tp499972p2999074.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: wildcards and German umlauts

2011-05-29 Thread mdz-munich
Ah, NOW I got it. It's not a bug, it's a feature. But that would mean, that every character-manipulation (e.g. char-mapping/replacement, Porter-Stemmer in some cases ...) would cause a wildcard-query to fail. That too bad. But why? What's the Problem with passing the prefix through the analyzer/

GeoJSON Response Writer

2011-05-29 Thread Adam Estrada
All, Has anyone modified the current json response writer to include the GeoJSON geospatial encoding standard. See here: http://geojson.org/ Just curious... Adam

Re: GeoJSON Response Writer

2011-05-29 Thread Mattmann, Chris A (388J)
Hey Adam, I haven't done GeoJSON, but I did whip up a GeoRSS one, check it out here: https://issues.apache.org/jira/browse/SOLR-2074 Cheers, Chris On May 29, 2011, at 11:14 AM, Adam Estrada wrote: > All, > > Has anyone modified the current json response writer to include the GeoJSON > geospat

Re: GeoJSON Response Writer

2011-05-29 Thread Adam Estrada
Thanks Chris! Adam On Sun, May 29, 2011 at 2:19 PM, Mattmann, Chris A (388J) < chris.a.mattm...@jpl.nasa.gov> wrote: > Hey Adam, > > I haven't done GeoJSON, but I did whip up a GeoRSS one, check it out here: > > https://issues.apache.org/jira/browse/SOLR-2074 > > Cheers, > Chris > > On May 29, 2

Re: TermFreqVector Problem

2011-05-29 Thread deniz
there is nobody ever used TermFreqVector? - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/TermFreqVector-Problem-tp2992163p3000445.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Index content behind siteminder

2011-05-29 Thread Erick Erickson
Take a look at TikaEntityProcessor or the Tika package. I'm on restricted inet access so can't look at the exact class. Erick On May 24, 2011 6:45 AM, "Thumuluri, Sai" wrote: > Good morning, I am trying to index some PDFs which are protected by > siteminder, any ideas as to how I can go about it?

Re: TermFreqVector Problem

2011-05-29 Thread Koji Sekiguchi
TermFreqVector vector = reader.getTermFreqVector(this.docId, "universal"); String universalTerms[] = vector.getTerms(); to see the lenght of universalTerms array, and it is 1 and only value that array stores is the field value: universalTerms[0]= "car house road age s

Re: How to use StreamingUpdateSolrServer?

2011-05-29 Thread Erick Erickson
You use it from an external Java program. As I remember you can configure the number of simultaneous threads to use as we'll, but check since I can't look it up just now. Best Erick On May 24, 2011 7:00 PM, "deniz" wrote: > Hi all, > > to improve crappy indexing speed i would like to use > Stream

Re: newbie question for DataImportHandler

2011-05-29 Thread Erick Erickson
This trips up a lot of folks. Sold just marks docs as deleted, the terms etc are left in the index until an optimize is performed, or the segments are merged. This latter isn't very predictable, so just do an optimize. The docs aren't returned as results though. Best Erick On May 24, 2011 10:22 P

Re: adding results external to index

2011-05-29 Thread Erick Erickson
You'd, probably have to do this as two calls in your app, Solr doesn't have this built in. Best Erick On May 15, 2011 10:33 PM, "abhayd" wrote: > hi > > I am not sure if SOLR has this feature so just wanted to confirm.. > > Basically what I want to do is for certain query terms I would like to qu

Re: Problem with caps and star symbol

2011-05-29 Thread Erick Erickson
I'd start by looking at the analysis page from the Solr admin page. That will give you an idea of the transformations the various steps carry out, it's invaluable! Best Erick On May 26, 2011 12:53 AM, "Saumitra Chowdhury" < saumi...@smartitengineering.com> wrote: > Hi all , > In my schema.xml i am

Re: Terms Component - solr-1.4.0

2011-05-29 Thread Erick Erickson
Please tell us what you've tried and what problems you're having, we can't help much with such a general request. Best Erick On May 26, 2011 5:02 AM, "Solr User" wrote: > Hi All, > > Please help me in implementing TermsComponent in my current Solr solution. > > Regards, > Solr User > > On Tue, Ma

Re: Too many Boolean Clause and Filter Query

2011-05-29 Thread Erick Erickson
This is usually done with roles to limit the size of the author token clause. You might search the archives for permissions, authorizations, etc. Adding a ton of author tokens in a clause doesn't scale we'll, you need to use a different strategy here. Best Erick On May 26, 2011 5:51 AM, "Sujatha A

Match in the process of filter, not end, does it mean "not matching"?

2011-05-29 Thread Ellery Leung
This is the schema:

Re: parentDeltaQuery

2011-05-29 Thread Romi
delta import i know. i want to abt parentdelta query - Thanks & Regards Romi -- View this message in context: http://lucene.472066.n3.nabble.com/parentDeltaQuery-tp2979110p3000847.html Sent from the Solr - User mailing list archive at Nabble.com.