ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/BDB/Changes
(Generate patch)

Comparing BDB/Changes (file contents):
Revision 1.30 by root, Sun Mar 30 04:34:21 2008 UTC vs.
Revision 1.68 by root, Sun Jan 4 10:48:15 2009 UTC

1Revision history for perl module BDB. 1Revision history for perl module BDB.
2 2
3TODO: DB_RECNUM/DB_SET_RECNO?
4
51.82 Sun Jan 4 11:22:44 CET 2009
6 - use our own socketpair emulation (stolen from libev), as perl's
7 doesn't work on vista, which returns fantasy port numbers
8 in getpeer/sockname.
9
101.81 Tue Oct 21 04:20:25 CEST 2008
11 - check that mutable arguments can be downgraded - this
12 /very indirectly) ensures that output variables won't
13 have spurious utf-8 flags.
14 - fix opmode checdk in db_c_get, db_c_pget again.
15 - allow undef/default arguments for db_compact, for a
16 crash-free tomorrow!
17 - fix a memleak in db_key_range.
18 - started a common pitfdalls section.
19 - added db_env_log_archive.
20 - added db->set_pagesize.
21 - added BDB::IGNORE_LEASE.
22 - reworked documentation structure.
23
241.801 Mon Sep 29 04:58:03 CEST 2008
25 - removed ptrace.h and user.h includes thta have been left in
26 erronously.
27 - "port" to buggy windows compilers. again.
28
291.8 Sat Sep 27 14:01:37 CEST 2008
30 - non-callback requests will now - by default - be executed in the
31 foreground, which is much faster, but doesn't allow parallel
32 processing of other, event-based, requests.
33 - functions that modify their arguments now croak when a constant
34 is passed to them.
35 - db_c_get/db_c_pget requests did not correctly test the operation flags.
36 - db_pget now correctly updates the pkey argument.
37 - keep references to the passed env/db/etc. objects so they
38 can't get destroyed while requests are still outstanding.
39 - fixed a few minor stack issues.
40
411.71 Tue Jul 29 05:30:24 CEST 2008
42 - add const char * to typemap for possible 5.6 support.
43 - untested support for db4.3.
44 - berkelydb needs seriously larger stacksizes (on x86 at least)
45 then what the default xthread.h provides.
46
471.7 Thu Jul 17 14:09:25 CEST 2008
48 - use a totally different mechanism to pass callbacks to
49 requests (see manpage).
50 - optional arguments before the callback can now be left out.
51 - use less memory per request, probably be a bit faster, too.
52 - fix a memory leak (callbacks were never freed).
53 - add a basic testsuite.
54 - add (untested) support for cdsgroup_begin and db_exists.
55 - make BDB::VERSION compatible to UNIVERSAL::VERSION.
56
571.6 Tue Jul 8 10:34:58 CEST 2008
58 - add new BDB::VERSION function for easy version checks.
59 - work around broken bsd headers once more.
60 - support for berkeley db 4.7 added.
61 - add support for log_set_config and it's constants,
62 and set_intermediate_dir_mode.
63 - add db_env_dbrename and db_env_dbremove.
64
651.5 Sat May 10 22:22:42 CEST 2008
66 - port to solaris perls configured for old posix
67 (analysed by Jost Krieger).
68 - do our own stack memory management for threads - linux
69 allocates outrageous amounts of VM (not so bad unless you
70 use mlockall...), which severely limits the number of threads
71 on 32-bit arches: stack size is the larger of PTHREAD_STACK_MIN
72 and 4096 * sizeof (long) (usually this is 16..64k).
73 - support AnyEvent::BDB.
74
751.45 Sun Mar 30 10:01:00 CEST 2008
76 - work around win32 perl's broken filehandles
77 (this cannot work in all cases, so watch out).
78
791.44 Sun Mar 30 08:28:11 CEST 2008
80 - encode filenames as utf-8 (for bdb/win32)
81 or binary (everywhere else).
3 - patch $! to support stringification of BDB errno values 82 - patch $! to support stringification of BDB errno values
4 (utter hack, this should be pluggable :). 83 (utter hack, this should be pluggable :).
84 - fix prototypes of (void) functions.
5 85
61.43 Sun Jan 13 11:52:49 CET 2008 861.43 Sun Jan 13 11:52:49 CET 2008
7 - differentiate between nuked and undef objects, so as to 87 - differentiate between nuked and undef objects, so as to
8 not throw an exception when destroying closed handles. 88 not throw an exception when destroying closed handles.
9 89

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines