Home | About | Sematext search-lucene.com search-hadoop.com
 Search Lucene and all its subprojects:

Switch to Threaded View
Solr, mail # user - Dynamic fields performance question


Copy link to this message
-
Re: Dynamic fields performance question
Yonik Seeley 2007-03-26, 16:02
On 3/26/07, climbingrose <[EMAIL PROTECTED]> wrote:
> I'm developing an application that potentially creates thousands of dynamic
> fields.  Does anyone know if large number of dynamic fields will degrade
> Solr performance?

Thousands of fields won't be a problem if
 - you don't sort on most of them (sorting by a field takes up memory)
 - you can omit norms on most of them

Provided the above is true, differences in searching + indexing
performance shouldn't be noticeable.

-Yonik