From: Wolfgang M. M. <wol...@us...> - 2004-06-04 09:44:57
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/storage In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29447/src/org/exist/storage Modified Files: BrokerPool.java Log Message: Improved the periodic flushing of cache contents: this is now handled by a background thread (SyncDaemon) instead of the cache object itself. Different settings are possible for different files. The vital files, dom.dbx and collections.dbx, are flushed very often (every second). The other files can be reconstructed and are thus written less frequently. Index: BrokerPool.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/storage/BrokerPool.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** BrokerPool.java 25 May 2004 09:26:11 -0000 1.22 --- BrokerPool.java 4 Jun 2004 09:44:34 -0000 1.23 *************** *** 302,305 **** --- 302,309 ---- } + public SyncDaemon getSyncDaemon() { + return syncDaemon; + } + /** * Initialize the current instance. |