Sending binary data as part of a query

2011-01-28 Thread Jay Luker
Hi all, Here is what I am interested in doing: I would like to send a compressed integer bitset as a query to solr. The bitset integers represent my document ids and the results I want to get back is the facet data for those documents. I have successfully created a QueryComponent class that, assu

Re: Sending binary data as part of a query

2011-01-31 Thread Chris Hostetter
: I have successfully created a QueryComponent class that, assuming it : has the integer bitset, can turn that into the necessary DocSetFilter : to pass to the searcher, get back the facets, etc. That part all works ... : What I'm unsure how to do is actually send this compressed bitset fr

Re: Sending binary data as part of a query

2011-02-01 Thread Jay Luker
On Mon, Jan 31, 2011 at 9:22 PM, Chris Hostetter wrote: > that class should probably have been named ContentStreamUpdateHandlerBase > or something like that -- it tries to encapsulate the logic that most > RequestHandlers using COntentStreams (for updating) need to worry about. > > Your QueryComp