⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 intro.so

📁 berkeley db 4.6.21的源码。berkeley db是一个简单的数据库管理系统
💻 SO
字号:
m4_comment([$Id: intro.so,v 10.32 2003/04/15 16:48:42 bostic Exp $])m4_ref_title(Environment, Database environment introduction,    introduction to database @environments, arch/utilities, env/create)m4_p([dnlA m4_db environment is an encapsulation of one or more databases, logfiles and region files.  Region files are the shared memory areas thatcontain information about the database environment such as memory poolcache pages.  Only databases are byte-order independent and onlydatabase files can be moved between machines of different byte orders.Log files can be moved between machines of the same byte order.  Regionfiles are usually unique to a specific machine and potentially to aspecific operating system release.])m4_p([dnlThe simplest way to administer a m4_db application environment is tocreate a single m4_bold(home) directory that stores the files for theapplications that will share the environment.  The environment homedirectory must be created before any m4_db applications are run.  m4_dbitself never creates the environment home directory.  The environment canthen be identified by the name of that directory.])m4_p([dnlAn environment may be shared by any number of processes, as well as byany number of threads within those processes.  It is possible for anenvironment to include resources from other directories on the system,and applications often choose to distribute resources to otherdirectories or disks for performance or other reasons.  However, bydefault, the databases, shared regions (the locking, logging, memorypool, and transaction shared memory areas) and log files will be storedin a single directory hierarchy.])m4_p([dnlIt is important to realize that all applications sharing a databaseenvironment implicitly trust each other.  They have access to eachother's data as it resides in the shared regions, and they will shareresources such as buffer space and locks.  At the same time, anyapplications using the same databases m4_bold(must) share an environmentif consistency is to be maintained between them.])include(env/m4.methods)m4_page_footer

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -