Blame src/plugins/kdb/db2/libdb2/README.db2

Packit fd8b60
#	@(#)README	8.28 (Berkeley) 11/2/95
Packit fd8b60
Packit fd8b60
This is version 2.0-ALPHA of the Berkeley DB code.
Packit fd8b60
THIS IS A PRELIMINARY RELEASE.
Packit fd8b60
Packit fd8b60
For information on compiling and installing this software, see the file
Packit fd8b60
PORT/README.
Packit fd8b60
Packit fd8b60
Newer versions of this software will periodically be made available by
Packit fd8b60
anonymous ftp from ftp.cs.berkeley.edu:ucb/4bsd/db.tar.{Z,gz} and from
Packit fd8b60
ftp.harvard.edu:margo/db.tar.{Z,gz}.  If you want to receive announcements
Packit fd8b60
of future releases of this software, send email to the contact address
Packit fd8b60
below.
Packit fd8b60
Packit fd8b60
Email questions may be addressed to dbinfo@eecs.harvard.edu.
Packit fd8b60
Packit fd8b60
============================================
Packit fd8b60
Distribution contents:
Packit fd8b60
Packit fd8b60
README		This file.
Packit fd8b60
CHANGELOG	List of changes, per version.
Packit fd8b60
btree		B+tree access method.
Packit fd8b60
db		The db_open interface routine.
Packit fd8b60
docs		Various USENIX papers, and the formatted manual pages.
Packit fd8b60
hash		Extended linear hashing access method.
Packit fd8b60
lock		Lock manager.
Packit fd8b60
log		Log manager.
Packit fd8b60
man		The unformatted manual pages.
Packit fd8b60
mpool		The buffer manager support.
Packit fd8b60
mutex		Mutex support.
Packit fd8b60
recno		The fixed/variable length record access method.
Packit fd8b60
test		Test package.
Packit fd8b60
txn		Transaction support.
Packit fd8b60
Packit fd8b60
============================================
Packit fd8b60
Debugging:
Packit fd8b60
Packit fd8b60
If you're running a memory checker (e.g. Purify) on DB, make sure that
Packit fd8b60
you recompile it with "-DPURIFY" in the CFLAGS, first.  By default,
Packit fd8b60
allocated pages are not initialized by the DB code, and they will show
Packit fd8b60
up as reads of uninitialized memory in the buffer write routines.