Viewing file: linux.html (2.57 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
Berkeley DB Reference Guide: Linux
- Berkeley DB Reference Guide:
- Building Berkeley DB for UNIX/POSIX systems
|
 
|
Linux
- I can't compile and run multithreaded applications.
Special compile-time flags are required when compiling threaded
applications on Linux. If you are compiling a threaded application, you
must compile with the _REENTRANT flag:
cc -D_REENTRANT ...
The Berkeley DB library will automatically build with the correct options.
- I see database corruption when accessing databases.
Some Linux filesystems do not support POSIX filesystem semantics.
Specifically, ext2 and early releases of ReiserFS, and ext3 in some
configurations, do not support "ordered data mode" and may insert random
data into database or log files when systems crash. Berkeley DB files should
not be placed on a filesystem that does not support, or is not
configured to support, POSIX semantics.
- What scheduler should I use?
In some Linux kernels you can select schedulers, and the default is the
"anticipatory" scheduler. We recommend not using the "anticipatory"
scheduler for transaction processing workloads.
Copyright (c) 1996-2004 Sleepycat Software, Inc. - All rights reserved.
|