Hi to everybody, I am currently developing a recommendation system, that relies on an Apache Tomcat Server (6.0.26) and is triggered by Web-Service Calls (JAX-WS). In order to improve the performance of the system, I have been asked to asynchronously call the recommender and save the recommendation data models in persistent storage (MySQL database), in an incremental manner. For example, I would have a ComputeRecommendations class that would create the data model, which would produce the recommendations. Can I save this class in persistent storage so that, at a later time, if I need to re-compute the recommendations, I would not need to create my data-model from the start?
Thank you
