Re: Tagging

2007-02-22 Thread Mekin Maheshwari
For a more general solution, I'm thinking a separate lucene index might be ideal. -Yonik I dont know if this will work for others, below is what we do. Also, if there are things I can improve, do let me know. All tag inserts go to a small DB table. And I reindex the docs that these tags

Re: Top 10 results with faceted queries

2007-02-22 Thread Chris Hostetter
: is it possible to do a faceted search and additionally returning the : first 10 results for each facet (or category) in one query? There no way to do something like this out of the box but if you are familiar with java it would be fairly straight forward to write a custom RequestHandler that

Re[4]: Starting an index...

2007-02-22 Thread Jack L
Hello Erik, Wouldn't even matter if there were field name conflicts. A field by any other name is just a field. All document types could have a title field, for example. That makes sense. I wonder what happens if I change the schema after some documents have been inserted? Is this allowed

Re: Re[4]: Starting an index...

2007-02-22 Thread Walter Underwood
On 2/22/07 1:37 PM, Jack L [EMAIL PROTECTED] wrote: I wonder what happens if I change the schema after some documents have been inserted? Is this allowed at all? Will the index become corrupted if I add/remove some fields? Or change the field properties? The schema just controls the input

Re: Re[4]: Starting an index...

2007-02-22 Thread Chris Hostetter
: I guess I'm weary of a mismatch between an index and the schema, and : can't say that I recommend that at this point without seeing where it : may have issues. modifying a schema without rebuilding the index from scratch is in fact deep voodoo -- some things work okay; some things break

Re: Tagging

2007-02-22 Thread Gmail Account
I use solr for searching and facets and love it.. The performance is awesome. However I am about to add tagging to my application and I'm having a hard time deciding if I should just database my tags for now until a better solr solution is worked out... Does anyone know what technology some