On Thu, Feb 11, 2010 at 15:41, gdeconto <gerald.deco...@topproducer.com> wrote: > > > Xavier Schepler wrote: >> >> for example, "concept_user_*", and I will have maybe more than 200 users >> using this feature. >> > > I've done tests with many hundred dynamically created fields (ie foo_1 thru > f_400). generally speaking, I havent noticed any noticeable performance > issues from having that many fields > > the only exception: I have noticed performance issues if you try to query > large numbers of fields (ie q=(foo_1:123 AND foo_2:234 ... AND foo_400:912) > -- > View this message in context: > http://old.nabble.com/Dynamic-fields-with-more-than-100-fields-inside-tp27502271p27554402.html > Sent from the Solr - User mailing list archive at Nabble.com.
Since Lucene is schema-less, my assumption would be that using dynamic fields wouldn't have any effect on performance within the search stack itself - presumably the only penalty would be matching a given field name against the appropriate dynamic field (which I would assume would be cached/memoized). Lots of assumptions there, of course. Feel free to correct me if I'm wrong.