ields into memory in the UI.
--
View this message in context:
http://www.nabble.com/get-the-fields-of-solr-tp14431354p18350707.html
Sent from the Solr - User mailing list archive at Nabble.com.
: I'm able to get the fields specified in my schema with this query:
: /solr/admin/luke?show=schema&numTerms=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...
http://l
;> > http://wiki.apache.org/solr/LukeRequestHandler
>> >
>> >
>> > Edward Zhang wrote:
>> > > I need to get all the fields of a remote solr istance. I try to parse
>> > the
>> > > xmlstream returned by
>> "admin/get-file.
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
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 i
Thanks, Ryan!
I tried it, but the "QTime" was beyond my tolerance.It costs me about 53s
on average to "show=schema".The index contains *5456360 *documents. The
index was optimized.Is there any more fast way? Information responsed as
follows: *
*
-
-
0
50187
This response format is
Check the LukeRequestHandler:
http://wiki.apache.org/solr/LukeRequestHandler
Edward Zhang wrote:
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.xml&core=core1".Is
there any other way?
BTW: The xmlstream contain 3
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.xml&core=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.