Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Solr by design seems to be better suited for stateless requests.

I am considering an issue to handle session information. Basically user has some information in session and based on that information certain search results shouldn't appear. If it were plain Lucene, I could've just embedded it in my app and used filters to remove those docs.

The session information is not that small to add as query filter. It would become too unwieldy to attach session information to query filter. If I filter results after the search, then my facet information goes bad.

share|improve this question
1  
As you said, SolR is stateless. Besides: You need to put the information into the query anyway. How is SolR supposed to know what to do with it otherwise? – nfechner Aug 15 '11 at 19:56
"The session information is not that small to add as query filter. It would become too unwieldy to attach session information to query filter." -> why? What's the root cause of this? – Mauricio Scheffer Aug 15 '11 at 20:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.