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

Comparing BDB/Changes (file contents):
Revision 1.37 by root, Mon Apr 21 20:09:44 2008 UTC vs.
Revision 1.67 by root, Fri Jan 2 23:23:08 2009 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines