Re: Doc add limit, im experiencing it too

2006-09-06 Thread Chris Hostetter
: Old issue (see : http://www.mail-archive.com/solr-user@lucene.apache.org/msg00651.html), : but I'm experiencing the same exact thing on windows xp, latest tomcat. did you notice the followup thread from sangraal where he mentioned that he'd narrowed the problem down to both using Tomcat and sub

Double Solr Installation on Single Tomcat (or Double Index)

2006-09-06 Thread Tom Weber
Hello, I need to have a second separate index (separate data) on the same server. Is there a possibility to do this in a single solr install on a tomcat server or do I need to have a second instance in the same tomcat install ? If either one is possible, does somebody has some adv

Re: Double Solr Installation on Single Tomcat (or Double Index)

2006-09-06 Thread sangraal aiken
I've set up 2 separate Solr indexes on one Tomcat instance. I basically created two separate Solr webapps. I have one webapp that is the client to both Solr instances as well. So the whole setup is 3 webapps. I have one set of Solr source classes and an ant task to build a jar file and copy it in

Re: Doc add limit, im experiencing it too

2006-09-06 Thread sangraal aiken
I sent out an email about this a while back, but basically this limit appears only on Tomcat and only when Solr attempts to write to the response. You can work around it by splitting up your posts so that you're posting less than 5000 (or whatever your limit seems to be) at a time. You DO NOT ha

Re: Double Solr Installation on Single Tomcat (or Double Index)

2006-09-06 Thread Yonik Seeley
Another way to run multiple solr webapps with Tomcat involves context fragments. It allows you to use a single copy of the solr.war but specify different configs (via different solrhomes). http://wiki.apache.org/solr/SolrTomcat -Yonik On 9/6/06, sangraal aiken <[EMAIL PROTECTED]> wrote: I've

Solr now used on Discogs.com

2006-09-06 Thread Kevin Lewandowski
I just wanted to say thanks to the Solr developers. I'm now using Solr for the main search engine on Discogs.com. I've been through five revisions of the search engine and this was definitely the least painful. Solr gives me the power of Lucene without having to deal with the guts. It made for a

Re: Solr now used on Discogs.com

2006-09-06 Thread Joachim Martin
Can you expand on this a bit? "Main search engine" would be the search feature, but not browsing/category listing? Are you using Solr for all data storage and search? Or a RDBMS? If so, what is the split? Cool site! --Joachim Kevin Lewandowski wrote: I just wanted to say thanks to the

Re: Solr now used on Discogs.com

2006-09-06 Thread Kevin Lewandowski
"Main search engine" would be the search feature, but not browsing/category listing? That's correct, just the search function, though I'm looking into using Solr for other types of browsing. Are you using Solr for all data storage and search? Or a RDBMS? If so, what is the split? All data

Re: Solr now used on Discogs.com

2006-09-06 Thread Chris Hostetter
: That's correct, just the search function, though I'm looking into : using Solr for other types of browsing. if i may ask: did you customize the Solr code at all (ie: are you using any custom request handlers, field types or your own Similarity class) ? ... if not, which request handler are you

Re: Solr now used on Discogs.com

2006-09-06 Thread Kevin Lewandowski
if i may ask: did you customize the Solr code at all (ie: are you using any custom request handlers, field types or your own Similarity class) ? ... if not, which request handler are you using (Standard or DisMax) ? I'm using the Solr from the nightly build, with Standard request handler, and ha

Re: Solr now used on Discogs.com

2006-09-06 Thread Chris Hostetter
: I added several custom fields, and modified the TextField in : schema.xml for some things that are specific to the app, like : disabling stemming and stop words, and using ISOLatin1FilterFactory : (so searches for "bjork" will find "björk", etc). this was all just config file changes though rig

Re: Solr now used on Discogs.com

2006-09-06 Thread Kevin Lewandowski
this was all just config file changes though right, you didn't need to write any new javacode to load into solr to make those work did you? That's right. It was all config changes and no new java code, which is a plus since I've never coded in java :) Kevin