I am uploading many csv files
currency.csv file:
code,currency_name,currency_decimals
AUD,Australian Dollar,2
GBP,Pound Sterling,2
...
...
currency_holidays.csv file:
code,holiday_date,holiday_name
AUD,02/01/2012,New Year's Day Observed
AUD,26/01/2012,Australia Day
...
...
NOTE: uniqueKey is set to 'code' in solr configuration file
if I upload these files in to solr single core it would overwrite the matching currency recordes e.g. AUD. Right?
is it better to have core per file? i.e. multiple cores.
This is my previous post:
apache solr csv file same values
What is the best solution? I need help. Hope someone can help out.
Thanks GM