Sanity check: ResonseWriter directly to a database?

2009-09-03 Thread seanoc5
Hello all, Are there any hidden gotchas--or even basic suggestions--regarding implementing something like a DBResponseWriter that puts responses right into a database? My specific questions are: 1) Any problems adding non-trivial jars to a solr plugin? I'm thinkin JDBC and then perhaps Hibernate

Re: Sanity check: ResonseWriter directly to a database?

2009-09-03 Thread seanoc5
st perfect. You can use anyone of the well know > writers > as a starting point. > > Say I have a read-write single-core solr server: a vanilla-out-of-the-box >> example install. Can I concurrently update the underlying index safely >> with >> EmbeddedSolrServer? > >

Customizing solr search: SpanQueries (revisited)

2009-10-10 Thread seanoc5
Hi all, I am trying to use SpanQueries to save*all* hits for custom query type (e.g. defType=fooSpanQuery), along with token positions. I have this working in straight lucene, so my challenge is to implement it half-intelligently in solr. At the moment, I can't figure out where and how to cust

Re: Customizing solr search: SpanQueries (revisited)

2009-10-13 Thread seanoc5
I'm fairly sure I did a custom (Hit)Collector in lucene-java, but all I can find at the moment are my retro implementations (w/o collectors). I won't bore (or scare?) you with the details, but I follow some of what you're suggesting. I have been able to get straight SpanQueries to work in my cus