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.