ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/BDB/Changes
Revision: 1.54
Committed: Thu Sep 25 13:30:14 2008 UTC (15 years, 7 months ago) by root
Branch: MAIN
Changes since 1.53: +3 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.3 Revision history for perl module BDB.
2    
3 root 1.53 TODO: memleka on QUIT
4    
5 root 1.52 TODO: check memleaks
6 root 1.54 TODO: superfast blocking mode
7     1.8
8 root 1.52 - keep references to the passed env/db/etc. objects so they
9     can't get destroyed while requests are still outstanding.
10 root 1.51 - fixed a few minor stack issues.
11    
12 root 1.50 1.71 Tue Jul 29 05:30:24 CEST 2008
13 root 1.49 - add const char * to typemap for possible 5.6 support.
14     - untested support for db4.3.
15 root 1.54 - berkelydb needs seriously larger stacksizes (on x86 at least)
16 root 1.50 then what the default xthread.h provides.
17 root 1.49
18 root 1.48 1.7 Thu Jul 17 14:09:25 CEST 2008
19 root 1.43 - use a totally different mechanism to pass callbacks to
20     requests (see manpage).
21     - optional arguments before the callback can now be left out.
22     - use less memory per request, probably be a bit faster, too.
23 root 1.45 - fix a memory leak (callbacks were never freed).
24 root 1.44 - add a basic testsuite.
25 root 1.47 - add (untested) support for cdsgroup_begin and db_exists.
26 root 1.48 - make BDB::VERSION compatible to UNIVERSAL::VERSION.
27 root 1.43
28 root 1.42 1.6 Tue Jul 8 10:34:58 CEST 2008
29 root 1.41 - add new BDB::VERSION function for easy version checks.
30 root 1.39 - work around broken bsd headers once more.
31 root 1.40 - support for berkeley db 4.7 added.
32     - add support for log_set_config and it's constants,
33     and set_intermediate_dir_mode.
34     - add db_env_dbrename and db_env_dbremove.
35 root 1.39
36 root 1.38 1.5 Sat May 10 22:22:42 CEST 2008
37 root 1.37 - port to solaris perls configured for old posix
38     (analysed by Jost Krieger).
39 root 1.35 - do our own stack memory management for threads - linux
40     allocates outrageous amounts of VM (not so bad unless you
41     use mlockall...), which severely limits the number of threads
42 root 1.36 on 32-bit arches: stack size is the larger of PTHREAD_STACK_MIN
43     and 4096 * sizeof (long) (usually this is 16..64k).
44 root 1.38 - support AnyEvent::BDB.
45 root 1.35
46 root 1.34 1.45 Sun Mar 30 10:01:00 CEST 2008
47     - work around win32 perl's broken filehandles
48     (this cannot work in all cases, so watch out).
49    
50 root 1.33 1.44 Sun Mar 30 08:28:11 CEST 2008
51 root 1.31 - encode filenames as utf-8 (for bdb/win32)
52     or binary (everywhere else).
53 root 1.30 - patch $! to support stringification of BDB errno values
54     (utter hack, this should be pluggable :).
55 root 1.32 - fix prototypes of (void) functions.
56 root 1.30
57 root 1.29 1.43 Sun Jan 13 11:52:49 CET 2008
58 root 1.28 - differentiate between nuked and undef objects, so as to
59     not throw an exception when destroying closed handles.
60    
61 root 1.27 1.42 Tue Dec 25 15:22:50 CET 2007
62     - do not automatically call set_thread_count.
63    
64 root 1.26 1.41 Sat Dec 22 08:32:41 CET 2007
65 root 1.25 - add cursor->set_priority.
66     - minor optimisations and checks.
67 root 1.26 - port to microsoft pseudo-C again.
68 root 1.25
69 root 1.24 1.4 Wed Dec 12 02:20:39 CET 2007
70 root 1.20 - new globals BDB::VERSION and ..VERSION_STRING.
71 root 1.21 - add db_upgrade.
72 root 1.22 - do not die in DESTROY after explicit db_close and similar
73     operations.
74 root 1.19
75 root 1.18 1.3 Fri Dec 7 14:36:25 CET 2007
76     - db_put and c_put leaked memory like hell (reported by Danny).
77 root 1.15 - de-IO::AIO-ify the documentation.
78 root 1.16 - port to microsofts pseudo-C from hell.
79 root 1.17 - added mutex_set_increment, mutex_set_tas_spins
80     and mutex_set_max, mutex_set_align.
81 root 1.15
82 root 1.14 1.2 Tue Dec 4 11:12:47 CET 2007
83 root 1.13 - after fork, invest some work to make sure that the poll_fileno
84     stays stable (by dup2'ing the new fd over the old one), to make
85     it easier for programs/libs that don't control their forking
86     behaviour and cannot recreate their watchers.
87 root 1.14 - added missing DB::RDONLY (reported by Danny).
88 root 1.13
89 root 1.12 1.1 Sun Sep 16 20:15:55 CEST 2007
90 root 1.11 - flag and check TXN_DEADLOCK flag for easier transaction
91 root 1.12 programming (see db_txn_finish).
92 root 1.11 - new custom db_txn_finish request.
93 root 1.10 - improved docs.
94    
95 root 1.9 1.0 Mon Aug 13 14:02:42 CEST 2007
96 root 1.8 - some updates for db 4.6.
97     - vastly improved documentation, i.e. there is some now.
98 root 1.9 - this module has been tested a lot in the Crossfire TRT server.
99 root 1.8
100 root 1.7 0.5 Sun Jul 8 16:57:03 CEST 2007
101 root 1.5 - port to db 4.4.20 (probably any 4.4 version).
102 root 1.6 - added bdb error constants.
103     - add set_errfile/set_msgfile/set_verbose.
104 root 1.3 - shared code between IO::AIO and BDB.
105 root 1.4 - upgrade to xthread.h from IO::AIO for win32 compatibility.
106 root 1.5 - port to win32 (there is an unexplainable hang in
107     db_sequence_get...).
108 root 1.1
109 root 1.2 0.1 Mon Mar 5 20:44:18 CET 2007
110 root 1.1 - cloned from IO::AIO.
111