Path to this page:
./
databases/db4,
Berkeley DB version 4 from Oracle
Branch: CURRENT,
Version: 4.8.30,
Package name: db4-4.8.30,
Maintainer: pkgsrc-usersBerkeley DB is an embeddable database system that supports keyed access to
data. The software is distributed in source code form, and developers can
compile and link the source code into a single library for inclusion
directly in their applications.
Developers may choose to store data in any of several different storage
structures to satisfy the requirements of a particular application. In
database terminology, these storage structures and the code that operates on
them are called access methods. The library includes support for the
following access methods:
* B+tree: Stores keys in sorted order, using either a programmer-supplied
ordering function or a default function that does lexicographical
ordering of keys. Applications may perform equality or range searches.
* Hashing: Stores records in a hash table for fast searches based on
strict equality. Extended Linear Hashing modifies the hash function
used by the table as new records are inserted, in order to keep buckets
underfull in the steady state.
* Fixed and Variable-Length Records: Stores fixed- or variable-length
records in sequential order. Record numbers may be immutable or
mutable, i.e., permitting new records to be inserted between existing
records or requiring that new records be added only at the end of the
database.
Required to build:[
devel/libtool-base]
Master sites: (Expand)
SHA1: ab36c170dda5b2ceaad3915ced96e41c6b7e493c
RMD160: dd2fcd4c9b857a91e2f491fd4fadb0c51b993a9c
Filesize: 22350.884 KB
Version history: (Expand)
- (2010-06-02) Updated to version: db4-4.8.30
- (2009-01-23) Updated to version: db4-4.7.25.3
- (2008-09-07) Updated to version: db4-4.7.25.1
- (2008-01-11) Updated to version: db4-4.6.21
- (2008-01-11) Updated to version: db4-4.6.21
- (2007-06-18) Updated to version: db4-4.5.20.2
CVS history: (Expand)
| 2010-06-02 14:06:22 by Adam Ciarcinski | Files touched by this commit (10) |
Log message:
Changes 4.8.30:
* The log file format changed in 11gR2.
* Replication Manager sites can specify one or more possible client-to-client
peers.
* Added resource management feature in all Berkeley DB APIs to automatically
manage cursor and database handles by closing them when they are not
required, if they are not yet closed.
* Added a SQL interface to the Berkeley DB library. The interface is based on -
and a drop-in-replacement for - the SQLite API. It can be accessed via a
command line utility, a C API, or existing APIs built for SQLite.
* Added hash databases support to the DB->compact interface.
* Renamed the "db_sql" utility to "db_sql_codegen". This \
utility is not built
by default. To build this utility, enter --enable-sql_codegen as an argument
to configure.
* Added transactional support in db_sql_codegen utility. Specify TRANSACTIONAL
or NONTRANSACTIONAL in hint comments in SQL statement, db_sql_codegen
enable/disable transaction in generated code accordingly.
* Added the feature read-your-writes consistency that allows client application
to check, or wait for a specific transaction to be replicated from the master
before reading database.
* Added DB log verification feature, accessible via the API and a new utility.
This feature can help debugging and analysis.
* Added support for applications to assign master/client role explicitly at any
time. Replication Manager can now be configured not to initiate elections.
* more...
|
| 2010-01-16 18:57:38 by Thomas Klausner | Files touched by this commit (22) |
Log message:
Remove workaround for compiler bug in gcc2 on sparc64.
|
| 2009-09-11 23:26:18 by Thomas Klausner | Files touched by this commit (1) |
Log message:
Restore BUILDLINK_LDADD.db4.
It is used by mk/bdb.buildlink3.mk:
BDB_LIBS= ${BUILDLINK_LDADD.${BDB_TYPE}}
which is then used e.g. by p5-BerkeleyDB:
MAKE_ENV+= BERKELEYDB_NAME=${BDB_LIBS:Q}
|
| 2009-09-07 20:37:12 by Matthias Drochner | Files touched by this commit (1) |
Log message:
don't set BUILDLINK_LDADD/BUILDLINK_LIBS -- this ends up in the LIBS
environment variable which makes (at least if GNU configure is
used the common way) that everything in the pkg gets linked against db4,
whether needed or not, which causes hidden dependencies and strange errors
|
| 2009-07-09 08:37:41 by Hasso Tepper | Files touched by this commit (2) |
Log message:
Make it build with DragonFly master.
|
| 2009-06-14 19:43:27 by Joerg Sonnenberger | Files touched by this commit (120) |
Log message:
Remove @dirrm entries from PLISTs
|
| 2009-03-20 20:25:55 by Joerg Sonnenberger | Files touched by this commit (1252) |
Log message:
Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
|
| 2009-01-21 16:44:32 by Matthias Drochner | Files touched by this commit (4) |
Log message:
add 2 more patches from the distribution site, fixing a deadlock
and a segfault
|