Re: get the fields of solr

2008-06-17 Thread Chris Hostetter
: I'm able to get the fields specified in my schema with this query: : /solr/admin/luke?show=schemanumTerms=0 that's what the show=schema does .. if you want all the field names regardless of wether they were explicitly or dynamicly created you just leave that option off...

Re: get the fields of solr

2008-06-16 Thread wojtekpia
appreciated. -- View this message in context: http://www.nabble.com/get-the-fields-of-solr-tp14431354p17873611.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: get the fields of solr

2007-12-20 Thread Yonik Seeley
On Dec 20, 2007 8:47 PM, Edward Zhang [EMAIL PROTECTED] wrote: I tried it, but the QTime was beyond my tolerance.It costs me about 53s on average to show=schema. That's probably because Luke tries to find the top terms for each field by default. Try passing in numTerms=0 -Yonik The index

Re: get the fields of solr

2007-12-20 Thread Edward Zhang
Wow, thanks for Yonik 's quick reply! :) That is what I want! I just tried numTerms=500 then I ignored the useness of numTerms. On 12/21/07, Yonik Seeley [EMAIL PROTECTED] wrote: On Dec 20, 2007 8:47 PM, Edward Zhang [EMAIL PROTECTED] wrote: I tried it, but the QTime was beyond my

get the fields of solr

2007-12-19 Thread Edward Zhang
I need to get all the fields of a remote solr istance. I try to parse the xmlstream returned by admin/get-file.jsp?file=schema.xmlcore=core1.Is there any other way? BTW: The xmlstream contain 3 space lines in head and 2 in tail, which cause some trouble to parse. Every reply appreciated.