From: Sasa M. <sa...@us...> - 2004-05-31 09:05:07
|
Update of /cvsroot/jrobin/src/org/jrobin/mrtg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21037/org/jrobin/mrtg Modified Files: MrtgConstants.java Log Message: Final changes in NIO Index: MrtgConstants.java =================================================================== RCS file: /cvsroot/jrobin/src/org/jrobin/mrtg/MrtgConstants.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** MrtgConstants.java 25 May 2004 07:49:26 -0000 1.8 --- MrtgConstants.java 31 May 2004 09:04:51 -0000 1.9 *************** *** 27,30 **** --- 27,36 ---- public interface MrtgConstants { + // backend factory to be used + // WARNING: Change this to "FILE" if you run the Server app + // on a machine with less RAM. "NIO" consumes a lot of memory + // but it's fast, very fast. + String BACKEND_FACTORY_NAME = "NIO"; + // turn debugging on/off boolean DEBUG = false; |