> Am 23.06.2015 um 15:06 schrieb Jorge Luis Betancourt González > <[email protected]>: > > I don't think there is any built-in way of doing this, the problem is > essentially that for your particular use case you want the value of the meta > tag to be an array instead of only one value, this means that you'll need to > either change the parse-metatags plugin (or index-metadata) to accomplish the > desired goal.
Maybe it’s easier to change the HTML code of the website to have multiple lines of <meta name="ORIGIN" content="xx" /> with single country codes since the metatags plugin can handle this as array. > > I'm guessing that you want to store as a multivalued field in Solr just to > get the stored value as an array instead of a comma separated list right? > because for search purposes the StandardTokenizerFactory will emit a stream > of separated tokens for search, and you will be able to search for any of the > language codes specified in the ORIGIN meta. If I get you right, you think I can query a comma separated string like it would be an array in Solr? Cheers Peter

