I have been given the task of creating a google like Ngram view/chart of a data set. The chart is just a line chart of basically terms (ngrams) over time.
I dont have any experience with SOLR but have been given a core containing a lot of data and understand I need to use Shingles to pull the data out, its apparently already been indexed to use Ngrams although I need to find out what exactly.
So I think I can get the Ngram/shingle out for the whole of the data, but how do I get results over time, say for each month over five years? The data is newspaper data so the day and date is part of the index as is the full text.
Is there a SOLR call to get the data over time, or should i do many requests to Solr for each day/month?
Any suggestions or experiences of doing this would be much appreciated