Re: Large number of elements in multivalued field

2022-07-13 Thread Ryan Yacyshyn
Thanks Markus, The field does not need to be returned in the response so setting stored to false. Regards, Ryan On Wed, Jul 13, 2022, 06:02 Markus Jelsma wrote: > Hello Ryan, > > Solr should have no issues for indexing these kinds of documents, > retrieving them is another thing. For multiV

Re: Large number of elements in multivalued field

2022-07-12 Thread Markus Jelsma
Hello Ryan, Solr should have no issues for indexing these kinds of documents, retrieving them is another thing. For multiValued a lot of datastructures are created when serializing the document, that is probably the problem. If you do not need the field returned, do not stored=true the field. If