SolrInputDocument doc1 = new SolrInputDocument(); doc1.addField( "Fulltext", strContent);
strContent is a string variable which contains contents of text file. ( assume that text file is located in c:\files\abc.txt ) In my case abc.text ( text files ) could be very huge ~ 2 GB so it is not always possible to read and store them into string variables before indexing . Can anyone suggest what should be better approach to index these huge text files ? -- Nipen Mark