~ubuntu-branches/ubuntu/edgy/rpm/edgy

« back to all changes in this revision

Viewing changes to db/docs/ref/env/intro.html

  • Committer: Bazaar Package Importer
  • Author(s): Joey Hess
  • Date: 2002-01-22 20:56:57 UTC
  • Revision ID: james.westby@ubuntu.com-20020122205657-l74j50mr9z8ofcl5
Tags: upstream-4.0.3
ImportĀ upstreamĀ versionĀ 4.0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--$Id: intro.so,v 10.27 2001/03/01 15:58:03 bostic Exp $-->
 
2
<!--Copyright 1997-2001 by Sleepycat Software, Inc.-->
 
3
<!--All rights reserved.-->
 
4
<html>
 
5
<head>
 
6
<title>Berkeley DB Reference Guide: Introduction</title>
 
7
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
 
8
<meta name="keywords" content="embedded,database,programmatic,toolkit,b+tree,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,java,C,C++">
 
9
</head>
 
10
<body bgcolor=white>
 
11
<table width="100%"><tr valign=top>
 
12
<td><h3><dl><dt>Berkeley DB Reference Guide:<dd>Environment</dl></h3></td>
 
13
<td align=right><a href="../../ref/arch/utilities.html"><img src="../../images/prev.gif" alt="Prev"></a><a href="../../reftoc.html"><img src="../../images/ref.gif" alt="Ref"></a><a href="../../ref/env/create.html"><img src="../../images/next.gif" alt="Next"></a>
 
14
</td></tr></table>
 
15
<p>
 
16
<h1 align=center>Introduction</h1>
 
17
<p>A Berkeley DB environment is an encapsulation of one or more databases, log
 
18
files, and shared information about the database environment such as
 
19
shared memory buffer cache pages.
 
20
<p>The simplest way to administer a Berkeley DB application environment is to
 
21
create a single <b>home</b> directory that stores the files for the
 
22
applications that will share the environment.  The environment home
 
23
directory must be created before any Berkeley DB applications are run.  Berkeley DB
 
24
itself never creates the environment home directory.  The environment can
 
25
then be identified by the name of that directory.
 
26
<p>An environment may be shared by any number of processes, as well as by
 
27
any number of threads within those processes.  It is possible for an
 
28
environment to include resources from other directories on the system,
 
29
and applications often choose to distribute resources to other
 
30
directories or disks for performance or other reasons.  However, by
 
31
default, the databases, shared regions (the locking, logging, memory
 
32
pool, and transaction shared memory areas) and log files will be stored
 
33
in a single directory hierarchy.
 
34
<p>It is important to realize that all applications sharing a database
 
35
environment implicitly trust each other.  They have access to each
 
36
other's data as it resides in the shared regions, and they will share
 
37
resources such as buffer space and locks.  At the same time, any
 
38
applications using the same databases <b>must</b> share an environment
 
39
if consistency is to be maintained between them.
 
40
<table width="100%"><tr><td><br></td><td align=right><a href="../../ref/arch/utilities.html"><img src="../../images/prev.gif" alt="Prev"></a><a href="../../reftoc.html"><img src="../../images/ref.gif" alt="Ref"></a><a href="../../ref/env/create.html"><img src="../../images/next.gif" alt="Next"></a>
 
41
</td></tr></table>
 
42
<p><font size=1><a href="http://www.sleepycat.com">Copyright Sleepycat Software</a></font>
 
43
</body>
 
44
</html>