mariadb/bdb/examples_c
serg@serg.mysql.com 3e119f9298 disable chmod in bdb scripts - bk doesn't like somebody messing with permissions
delete auto-generated files
remove in-place editing
2002-11-11 00:08:42 +01:00
..
ex_apprec disable chmod in bdb scripts - bk doesn't like somebody messing with permissions 2002-11-11 00:08:42 +01:00
ex_repquote BDB 4.1.24 2002-10-30 15:57:05 +04:00
bench_001.c BDB 4.1.24 2002-10-30 15:57:05 +04:00
ex_access.c BDB 4.1.24 2002-10-30 15:57:05 +04:00
ex_btrec.c BDB 4.1.24 2002-10-30 15:57:05 +04:00
ex_dbclient.c BDB 4.1.24 2002-10-30 15:57:05 +04:00
ex_env.c BDB 4.1.24 2002-10-30 15:57:05 +04:00
ex_lock.c BDB 4.1.24 2002-10-30 15:57:05 +04:00
ex_mpool.c BDB 4.1.24 2002-10-30 15:57:05 +04:00
ex_thread.c BDB 4.1.24 2002-10-30 15:57:05 +04:00
ex_tpcb.c BDB 4.1.24 2002-10-30 15:57:05 +04:00
ex_tpcb.h BDB 4.1.24 2002-10-30 15:57:05 +04:00
README BDB 4.1.24 2002-10-30 15:57:05 +04:00

# $Id: README,v 11.5 2002/02/26 16:22:45 krinsky Exp $

ex_access.c	Using just the DB access methods.

ex_apprec	Application-specific recovery.

ex_btrec.c	Using the BTREE access method with record numbers.

ex_env.c	Setting up the DB environment.

ex_lock.c	Locking.

ex_mpool.c	Shared memory buffer pools.

ex_repquote	Replication.  This creates a toy stock quote server
		with DB's single-master, multiple-client replication,
		with communication over TCP.

ex_tpcb.c	TPC/B.
		Ex_tpcb sets up a framework in which to run a TPC/B test.
		Database initialization (the -i flag) and running the
		benchmark (-n flag) must take place separately (i.e.,
		first create the database, then run 1 or more copies of
		the benchmark).  Furthermore, when running more than one
		TPCB process, it is necessary to run the deadlock detector
		(db_deadlock), since it is possible for concurrent tpcb
		processes to deadlock.  For performance measurement, it
		will also be beneficial to run the db_checkpoint process
		as well.