David Schultz <[EMAIL PROTECTED]> writes: > I'm not particularly ``familiar'' with postgres, but I did some > performance tests on it a little while ago. Grepping through one > of the traces just now, I found that database system made 139 > calls to mmap(), and the maximum number of regions mapped at any > given time was 39.[1]
PostgreSQL doesn't mmap its data. The mmap() calls you saw were from malloc(). The only place PostgreSQL calls mmap() directly is for IPC in the QNX port (because QNX apparently doesn't have SysV IPC). DES -- Dag-Erling Smørgrav - [EMAIL PROTECTED] _______________________________________________ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"