Berkeley DB 6.2.23 发布了 ,Berkeley
DB(BDB)是一个高性能的,嵌入数据库编程库,和C语言,C++,Java,Perl,Python,Tcl以及其他很多语言都有应用程序编程界面。
Berkeley DB可以保存任意类型的键/值对,而且可以为一个键保存多个数据。 Berkeley DB可以支持数千的并发线程同时操作数据库,支持最大256TB的数据,广泛用于各种操作系统包括大多数Unix类操作系统和Windows操作系统以及实时操作系统。 本次发布的一些提升: Added support for global message prefixes. [#20514] Added Replication Manager write forwarding, which enables a client to
perform simple put and delete operations by forwarding them to the
master. [#21049] Improved the way we mark a password as consumed. [#23876] Added support for IPv6. [#23878] Added support for Java 8. [#24220] Added support for ARMv7 and above, and for ARM64. ARMv6 and below are no longer supported. [#24312] Add a new SMP-optimized data model that is especially valuable for
highly multithreaded applications. A sliced Berkeley DB instance
contains a collection of related Berkeley DB environments, known as
slices, each containing a disjoint subset of records. Transactional
consistency is individually maintained within each slice, rather than
across multiple slices. [#24343] DB now supports the client-server architecture by providing a
stand-alone server program and Java client driver APIs. The server
program offers remote access to DB features. The client driver APIs
provide building blocks for applications that communicate with a
database server. Multiple client applications can communicate with a
single server simultaneously. [#24360] Enabled support of the SQLite user authentication extension. [#24365] Added Visual Studio 2012 projects. [#24674] Encryption and checksum can now be enabled with external files
(formerly known as BLOBs). Note that only the data stored in the
database will be encrypted and checksum protected. The data in the
external files will not be encrypted or checksum protected. [#24849] The BLOB files feature has been renamed external files to reduce
confusion with the SQL BLOB datatype. The BLOB related functions have
been deprecated, and replaced with new function names; for example,
ext_file_threshold has replaced blob_threshold, and blob_threshold is
deprecated. See the Upgrading section of the documentation for more
details. [#24850]
详细请看发布说明。 下载地址: |