1# A single private environment, with two databases, a primary and secondary
2# index pair.
3environment env1 {
4	home TESTDIR
5	cachesize 2 0 4			# 2GB, 4 caches
6
7	database db1 {			# Primary database.
8		type btree
9
10		transaction
11		pagesize 65536
12	}
13	database db2 {
14		type hash
15
16		# The secondary is a hash database, the primary is "db1".
17		# The secondary key is 10 bytes starting at byte offset
18		# 20.  The secondary key is an untyped byte string.
19		primary db1
20		secondary_offset 20 10
21
22		transaction
23		pagesize 32768
24	}
25}
26