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.78 by root, Tue Dec 22 02:06:24 2009 UTC

1Revision history for perl module BDB. 1Revision history for perl module BDB.
2 2
3TODO: DB_RECNUM/DB_SET_RECNO?
4
51.87 Tue Dec 22 03:06:09 CET 2009
6 - db 4.8 has removed XA resource manager functionality,
7 cope with it.
8 - add LOGVERSION, LOGVERSION_LATCHING, LOGOLDVER
9 symbols.
10
111.86 Fri Dec 4 16:03:21 CET 2009
12 - port to broken loser platform.
13
141.85 Thu Nov 12 03:22:21 CET 2009
15 - speed up object creation/type checking considerably
16 by caching the stashes.
17
181.84 Wed Aug 5 13:52:21 CEST 2009
19 - require common sense.
20 - use schmorp.h for pipe, taking advantage of eventfd.
21 - fix a bug in event pipe creation code on win32.
22
231.83 Sun Jan 11 01:52:56 CET 2009
24 - fix db_upgrade, add db_verify.
25
261.82 Sun Jan 4 11:22:44 CET 2009
27 - use our own socketpair emulation (stolen from libev), as perl's
28 doesn't work on vista, which returns fantasy port numbers
29 in getpeer/sockname.
30
311.81 Tue Oct 21 04:20:25 CEST 2008
32 - check that mutable arguments can be downgraded - this
33 /very indirectly) ensures that output variables won't
34 have spurious utf-8 flags.
35 - fix opmode checdk in db_c_get, db_c_pget again.
36 - allow undef/default arguments for db_compact, for a
37 crash-free tomorrow!
38 - fix a memleak in db_key_range.
39 - started a common pitfdalls section.
40 - added db_env_log_archive.
41 - added db->set_pagesize.
42 - added BDB::IGNORE_LEASE.
43 - reworked documentation structure.
44
451.801 Mon Sep 29 04:58:03 CEST 2008
46 - removed ptrace.h and user.h includes thta have been left in
47 erronously.
48 - "port" to buggy windows compilers. again.
49
501.8 Sat Sep 27 14:01:37 CEST 2008
51 - non-callback requests will now - by default - be executed in the
52 foreground, which is much faster, but doesn't allow parallel
53 processing of other, event-based, requests.
54 - functions that modify their arguments now croak when a constant
55 is passed to them.
56 - db_c_get/db_c_pget requests did not correctly test the operation flags.
57 - db_pget now correctly updates the pkey argument.
58 - keep references to the passed env/db/etc. objects so they
59 can't get destroyed while requests are still outstanding.
60 - fixed a few minor stack issues.
61
621.71 Tue Jul 29 05:30:24 CEST 2008
63 - add const char * to typemap for possible 5.6 support.
64 - untested support for db4.3.
65 - berkelydb needs seriously larger stacksizes (on x86 at least)
66 then what the default xthread.h provides.
67
681.7 Thu Jul 17 14:09:25 CEST 2008
69 - use a totally different mechanism to pass callbacks to
70 requests (see manpage).
71 - optional arguments before the callback can now be left out.
72 - use less memory per request, probably be a bit faster, too.
73 - fix a memory leak (callbacks were never freed).
74 - add a basic testsuite.
75 - add (untested) support for cdsgroup_begin and db_exists.
76 - make BDB::VERSION compatible to UNIVERSAL::VERSION.
77
781.6 Tue Jul 8 10:34:58 CEST 2008
79 - add new BDB::VERSION function for easy version checks.
80 - work around broken bsd headers once more.
81 - support for berkeley db 4.7 added.
82 - add support for log_set_config and it's constants,
83 and set_intermediate_dir_mode.
84 - add db_env_dbrename and db_env_dbremove.
85
861.5 Sat May 10 22:22:42 CEST 2008
3 - port to solaris perls configured for old posix 87 - port to solaris perls configured for old posix
4 (analysed by Jost Krieger). 88 (analysed by Jost Krieger).
5 - do our own stack memory management for threads - linux 89 - do our own stack memory management for threads - linux
6 allocates outrageous amounts of VM (not so bad unless you 90 allocates outrageous amounts of VM (not so bad unless you
7 use mlockall...), which severely limits the number of threads 91 use mlockall...), which severely limits the number of threads
8 on 32-bit arches: stack size is the larger of PTHREAD_STACK_MIN 92 on 32-bit arches: stack size is the larger of PTHREAD_STACK_MIN
9 and 4096 * sizeof (long) (usually this is 16..64k). 93 and 4096 * sizeof (long) (usually this is 16..64k).
94 - support AnyEvent::BDB.
10 95
111.45 Sun Mar 30 10:01:00 CEST 2008 961.45 Sun Mar 30 10:01:00 CEST 2008
12 - work around win32 perl's broken filehandles 97 - work around win32 perl's broken filehandles
13 (this cannot work in all cases, so watch out). 98 (this cannot work in all cases, so watch out).
14 99

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines