Re: Can Solr have Multiple Separate Indexes?

2009-04-12 Thread Shalin Shekhar Mangar
On Mon, Apr 13, 2009 at 5:35 AM, Isaac Foster wrote: > Hi, I'm new using Solr but have used the Zend Framework implementation of > Lucene before. One thing it supports is the ability to have separate > indexes, so that you could keep your index of (example) forum posts and > your > index of user p

Re: Question on StreamingUpdateSolrServer

2009-04-12 Thread Noble Paul നോബിള്‍ नोब्ळ्
If you use StreamingUpdateSolrServer it POSTs all the docs in a single request. 10 million docs may be a bit too much for a single request. I guess you should batch it in multiple requests of smaller chunks, It is likely that the CPU is really hot when the autowarming is hapening. getting a decen

Re: PHP Remove From Index/Search By Fields

2009-04-12 Thread Johnny X
Thanks for the reply Erik! Based on a previous page I used to return queries I've developed this code below for the page I need to do all of the above. CODE http://localhost:8080/solr/'); function request($reqData, $type){ $header[] = "Content-type: text/xml; charset=UTF-8"; $session

Can Solr have Multiple Separate Indexes?

2009-04-12 Thread Isaac Foster
Hi, I'm new using Solr but have used the Zend Framework implementation of Lucene before. One thing it supports is the ability to have separate indexes, so that you could keep your index of (example) forum posts and your index of user profiles separate, and query them separately. Can this be done wi

Re: Question on StreamingUpdateSolrServer

2009-04-12 Thread vivek sar
Thanks Shalin. I noticed couple more things. As I index around 100 million records a day, my Indexer is running pretty much at all times throughout the day. Whenever I run a search query I usually get "connection reset" when the commit is happening and get "blank page" when the auto-warming of sea

Re: PHP Remove From Index/Search By Fields

2009-04-12 Thread Erik Hatcher
On Apr 10, 2009, at 8:36 PM, Johnny X wrote: How could I write some code in PHP to place in a button to remove a returned item from the index? You can issue a delete command to Solr by simply doing a GET (or POST) to http://localhost:8983/solr/update?stream.body=%3Cdelete%3E%3Cid%3ESOMEID%

Re: maxCodeLength in PhoneticFilterFactory

2009-04-12 Thread Brian Whitman
yep, that did it. Thanks very much yonik. On Sat, Apr 11, 2009 at 10:27 PM, Yonik Seeley wrote: > OK, should hopefully be fixed in trunk. > > > -Yonik > http://www.lucidimagination.com > > > On Sat, Apr 11, 2009 at 9:16 PM, Yonik Seeley wrote: > > There's definitely a bug - I just reproduced it