Re: solrDocumentList

2012-06-02 Thread Erik Hatcher
Set those fields to be single valued (not multivalued). And reindex :) Erik On Jun 2, 2012, at 0:10, gopes saraladevi.ramamoor...@gmail.com wrote: We are using Lucid UI and solr to index our collection of xml files. I am getting the solrDocumentList like this

Re: Stop Words in SpellCheckComponent

2012-06-02 Thread Matthias Müller
Also, generally, you should have a separate field and field type for the spellcheck field **so that normal text fields can use stop words.** Now I've found a solution, although I'm not sure, if it's that what you've meant: Now I'm using a special fieldType WITHOUT stopwords for the spellcheck

Re: Solr Performance

2012-06-02 Thread Surendra
Jack ,its not from Chris. --Surendra

creating SchemaField and FieldType programmatically

2012-06-02 Thread Mike Sokolov
I'm creating a some Solr plugins that index and search documents in a special way, and I'd like to make them as easy as possible to configure. Ideally I'd like users to be able to just drop a jar in place without having to copy any configuration into schema.xml, although I suppose they will

Re: creating SchemaField and FieldType programmatically

2012-06-02 Thread Mike Sokolov
ok, never mind all is well - I had a mismatch between the schema-declared field and my programmatic field, where I was overzealous in using OMIT_TF_POSITIONS. -Mike On 6/2/2012 5:02 PM, Mike Sokolov wrote: I'm creating a some Solr plugins that index and search documents in a special way, and

Re: creating SchemaField and FieldType programmatically

2012-06-02 Thread Mike Sokolov
Oh yes, final followup for the terminally curious; I also had to add this little class in order to get analysis turned on for my programmatic field: class PathField extends TextField { PathField (IndexSchema schema) { setAnalyzer(new WhitespaceGapAnalyzer());

London OSS search social - meetup 6th June

2012-06-02 Thread Richard Marr
Apologies for the short notice guys, we're meeting up at The Plough in Bloomsbury on Wednesday 6th June. As usual the format is open and there's a healthy mix of experience and backgrounds. Please come and share wisdom, ask questions, geek out, etc. in the presence of beverages. -- Richard Marr

Distance Range Filtering

2012-06-02 Thread reeuv
Hi everyone I am trying to do distance range search using Solr. I know its very easy to do a search for filtering within the 5km range /q=*:*fq={!geofilt pt=45.15,-93.85 sfield=store d=5}/ What I am after is how to do the same thing if I am looking in a range of say *5 to 10 km* ?? Thanks --

Re: Using Data Import Handler to invoke a stored procedure with output (cursor) parameter

2012-06-02 Thread Lance Norskog
Right, or create a view. On Fri, Jun 1, 2012 at 8:11 PM, Michael Della Bitta michael.della.bi...@appinions.com wrote: Apologies for the terseness of this reply, as I'm on my mobile. To treat the result of a function call as a table in Oracle SQL, use the table() function, like this: select

Re: why DIH works in normal mode,error in debug mode

2012-06-02 Thread Lance Norskog
Search and ye shall find! http://www.lucidimagination.com/search/link?url=http://wiki.apache.org/solr/DataImportHandlerFaq On Fri, Jun 1, 2012 at 8:15 AM, Dyer, James james.d...@ingrambook.com wrote: Try setting it to 0 or -1.  Or check the Mysql JDBC driver documentation about valid values