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 of
: 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 horri
On Feb 22, 2007, at 4:49 PM, Walter Underwood wrote:
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
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 inp
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 al
: 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
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 belon