tags:

views:

256

answers:

1

Hi,

i'm using Solrj in the dao tier of my application. What i want to know is how can i get

the full query string of the request.

For example: select?q=*:*&fq=active:true

Method SolrQuery.getQuery() only returns the q=XXX part (*:* in my example)

Thx

+1  A: 

I don't have the proper environment to test it, but SolrQuery.toString() should get you close enough.

Mauricio Scheffer
lot of thanks ;-) it does work !
Lici