Transactional File Access and Caching in JBoss AS 5 - Stack Overflow most recent 30 from stackoverflow.com 2010-03-18T05:23:52Z http://stackoverflow.com/feeds/question/1581526 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1581526/transactional-file-access-and-caching-in-jboss-as-5 0 Transactional File Access and Caching in JBoss AS 5 robob http://stackoverflow.com/users/121804 2009-10-17T05:55:22Z 2009-10-18T17:41:38Z <p>We need to <strong>locally store a cache on a File System through JBoss 5</strong>. The files we need to store <strong>are big (~50 Mbyte)</strong> and there are many consumer (through WS on JBoss) that read these files and one producer (JBoss Biz Logic) that creates the last one. </p> <p>Because there are concurrent read and write problems, I would like to know if there is a solution to manage the transactions on File in a FileSystem (that could be NAS or CIFS or other thing). </p> <p>I looked at "JBossCache" but in the documentation they say that File System access is only for test purpose. I looked at JBoss <a href="http://www.jboss.org/jbosstm/fileio/" rel="nofollow">"Transactional File I/O"</a> too but I don't know if it works.</p> <p>Probably we need a framework to manage the caching layer and another framework to store this data with transaction on FS. A solution could be to store data in a DBMS but I don't like very much this solution.</p> <p>I do not want to reinvent the wheel, so please give me some help :-)</p>