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 yo...@lucidimagination.comwrote: OK, should hopefully be fixed in trunk. -Yonik http://www.lucidimagination.com On Sat, Apr 11, 2009 at 9:16 PM, Yonik Seeley yo...@apache.org wrote: There's

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

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

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

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 ?php $id = $_GET['id']; $connection = mysqli_connect(localhost, root, onion, collection) or die (Couldn't connect to MySQL);

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

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 isaac.z.fos...@gmail.comwrote: 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