I have a user recommender and i am trying to use incremental file update. I have the following stack
CachingRecommender GenericBooleanPrefUserBasedRecommender NearestNUserNeighborhood CachingUserSimilarity TanimotoCoefficientSimilarity FileDataModel I have the following file sample-data.txt sample-data.1.txt sample-data.2.txt I need to add sample-data.3.txt and understand how to insure all the components are refreshed. I see the method takes an input but it is not clear what that input should be or if it can be null. public void refresh(Collection<Refreshable> alreadyRefreshed) So do I just call datamodel.refresh(null) and all the other components will be refreshed? Thanks Scott Ryan
