Re: history

2007-07-08 Thread climbingrose
Accidentally I have a very similar use case. Thanks for advice. On 7/8/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 7/7/07, Brian Whitman <[EMAIL PROTECTED]> wrote: > I have been trying to plan out a history function for Solr. When I > update a document with an existing unique key, I would li

Solrsharp: direction

2007-07-08 Thread Jeff Rodenburg
I've been asked a few questions of late that all have a familiar theme: what's going on with solrsharp development? Well, I've been working on the next iteration of the Solrsharp client library, attempting to bring it more in line with the capabilities of Solr, at least as of the 1.2 release. Th

partial word searches

2007-07-08 Thread Alessandro Ferrucci
Yo guys, quick question..I have a pretty simple solr instance running.. the relevant part of the schema is as such: I've got stuff indexed fine. Let's say I do a query as such: last-name:Anderson I get 27 records (the correct result), so far so good... now I want t

Re: partial word searches

2007-07-08 Thread Yonik Seeley
On 7/8/07, Alessandro Ferrucci <[EMAIL PROTECTED]> wrote: [...] last-name:And* Now I get 0 results back.odd.. Since "text" probably has a lowercase filter, try last-name:and* Wildcard queries aren't run through the query analyzer because things like stemming wouldn't work with partial wor