Sam Varshavchik wrote: > > Sounds fine to me. I'll set it to 16384. I'll even set it so that > existing systems' configuration will remain untouched, only new installs > will get the higher ulimit.
Whatever works. :) The other possible solution is to specify a block size to gdbm_open in gdbmobj.c: - if ((obj->dbf=gdbm_open((char *)filename, 0, mode, 0664, 0)) != 0) + if ((obj->dbf=gdbm_open((char *)filename, 4096, mode, 0664, 0)) != 0) ...which should reduce the size of the gdbm bucket cache, at the expense of "optimal" IO. ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ courier-users mailing list [email protected] Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users
