Bonjour, Nous avons trouvé dans une application utilisant topia une fuite mémoire due au cache hibernate. En effet, comme le confirme la documentation [1], il n'est pas libéré tant que la session n'est pas close: "The Session caches every object that is in a persistent state (watched and checked for dirty state by Hibernate). If you keep it open for a long time or simply load too much data, it will grow endlessly until you get an OutOfMemoryException. One solution is to call clear() and evict() to manage the Session cache, but you should consider a Stored Procedure if you need mass data operations. Some solutions are shown in Chapitre 14, Traitement par lot. Keeping a Session open for the duration of a user session also means a higher probability of stale data." Dans le cas de notre application, il faudrait que après chaque commit, un session.clear() soit fait automatiquement. Le ticket a été créé dans ce but: http://www.nuiton.org/issues/2284 [1] : http://docs.jboss.org/hibernate/orm/3.5/reference/fr-FR/html/transactions.ht... -- Éric Chatellier <chatellier@codelutin.com> Tel: 02.40.50.29.28 http://www.codelutin.com