forked from cloudflarearchive/kyotocabinet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1170 lines (585 loc) · 28.5 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2012-05-24 FAL Labs <[email protected]>
* kcthread.cc (CondVar::wait): a bug on Win32 was fixed.
* kcdbext.h (IndexDB::set, IndexDB::replace): a bug of updating existing records was fixed.
* kcdb.h (DB::check): new function.
- Release: 1.2.76
2012-03-28 FAL Labs <[email protected]>
* kcpolydb.h (PolyDB::match_similar): supressed warnings on signedness.
- Release: 1.2.75
2012-03-15 FAL Labs <[email protected]>
* kcpolydb.h (PolyDB::SimilarKey): the type of a member was modified for c++0x mode.
- Release: 1.2.74
2012-03-06 FAL Labs <[email protected]>
* kcutil.h (memdist, strutfdist, strucsdist): new functions.
* kcpolydb.h (PolyDB::match_similar): new funcion.
* kclangc.h (kclevdist, kcdbmatchsimilar): new functions.
* kcfile.cc (File::open): LOCKFILE_FAIL_IMMEDIATELY support was added for Win32.
- Release: 1.2.73
2011-12-15 FAL Labs <[email protected]>
* kcfile.h (File::read, File::read_rast): a bug of invalid memory deletion was fixed.
- Release: 1.2.72
2011-12-01 FAL Labs <[email protected]>
* kclang.cc (kcdbcas): the erroneous order of parameters was rectified.
- Release: 1.2.71
2011-08-01 FAL Labs <[email protected]>
* kcplantdb.h (PlantDB::jump, PlantDB::step): a bug related to direction switch was fixed.
- Release: 1.2.70
2011-07-16 FAL Labs <[email protected]>
* kcutil.h (kcstrutflen): new function.
* kcplantdb (PlantDB::write_key): new function.
* kctextdb (TextDB::write_key): new function.
* kctextdb.h (TextDB::scan_parallel_impl): performance was improved.
* kctextdb.h (read_next): a bug of border condition was fixed.
- Release: 1.2.69
2011-07-14 FAL Labs <[email protected]>
* kcutil.h (strutftoucs, strucstoutf): performance was improved.
- Release: 1.2.68
2011-07-12 FAL Labs <[email protected]>
* kcutil.h (memicmp, memmem, memimem, stristr): new functions.
* kcutil.h (strupper, strlower, strtrim): new functions.
- Release: 1.2.67
2011-07-01 FAL Labs <[email protected]>
* kcutil.h (strutftoucs, strucstoutf): new functions.
- Release: 1.2.66
2011-06-28 FAL Labs <[email protected]>
* kcutil.h (urlencode): modified for compatibility with RFC 3986.
* kctextdb.h, kctextdb.cc: new files.
- Release: 1.2.65
2011-06-15 FAL Labs <[email protected]>
* kcmap.h (TinyHasyMap::accept_parallel): new function.
* kcdbext.h (MapReduce::FlushThread): new class.
* kcdbext.h (MapReduce::cache_flush): parallel mode was added.
- Release: 1.2.64
2011-06-12 FAL Labs <[email protected]>
* kcthread.cc (TaskQueue::do_start, TaskQueue::do_finish): new functions.
* kcdb.cc (BasicDB::Curosr::seize, BasicDB::seize): new functions.
* kcplantdb.h (PlantDB::Cursor::accept_atom): backward stepping is now supported.
- Release: 1.2.63
2011-06-12 FAL Labs <[email protected]>
* kcthread.cc (CondVar::wait): a bug of race condition on Win32 was fixed.
- Release: 1.2.62
2011-06-09 FAL Labs <[email protected]>
* kcthread.h (CondMap): new class.
* kcutiltest.cc (runcond, proccond): new functions.
- Release: 1.2.61
2011-06-07 FAL Labs <[email protected]>
* kccachedb.h (CacheDB::scan_parallel): a bug related to overloading was fixed.
- Release: 1.2.60
2011-05-30 FAL Labs <[email protected]>
* kcdb.h (BasicDB::scan_parallel, BasicDB::scan_parallel_impl): new functions.
* kccachedb.h (CacheDB::switch_rotation): new function.
* kcdbext.h (MapReduce::execute): parallel options were added.
- Release: 1.2.59
2011-05-19 FAL Labs <[email protected]>
* kcplantdb.cc (PlantDB::accept): locking mode of transaction was modified.
- Release: 1.2.58
2011-05-18 FAL Labs <[email protected]>
* kclangc.cc (kcdbincrint, kcdbincrdouble): "orig" parameter was added.
- Release: 1.2.57
2011-05-14 FAL Labs <[email protected]>
* kcthread.c (AtomicInt64::cas): a bug on 64-bit Windows was fixed.
* kcdb.h (DB::increment, DB::increment_double): "orig" parameter was added.
- Release: 1.2.56
2011-05-13 FAL Labs <[email protected]>
* kcplantdb.h (PlantDB::accept): lock promotion was abolished.
- Release: 1.2.55
2011-05-12 FAL Labs <[email protected]>
* kchashdb.h (HashDB::accept, HashDB::accept_bulk): promotion was replaced by try locking.
* kcplantdb.h (PlantDB::recalc_count): validation checking was added.
- some spin locks in the database classes were replaced by the system lock primitives.
- Release: 1.2.54
2011-05-01 FAL Labs <[email protected]>
* kcdbext.h (MapReduce::map): MapEmitter was integrated.
* kcdbext.h (MapReduce::emit): new function.
* kcdbext.h (MapReduce::execute): a bug of wrong handling of empty databases was fixed.
- Release: 1.2.53
2011-04-10 FAL Labs <[email protected]>
* kcutil.h (OSNAME, PAGESIZ): renamed for portability to Solaris.
- Release: 1.2.52
2011-03-22 FAL Labs <[email protected]>
* kclangc.h (kcidxnew, kcidxdel, kcidxopen, kcidxclose): new functions.
- Release: 1.2.51
2011-03-08 FAL Labs <[email protected]>
* kcplantdb.h (PlantDB::defrag): dirty buffer clean-up was added.
- Release: 1.2.50
2011-03-06 FAL Labs <[email protected]>
* kcutil.h (hexdecode): a bug of boundary violation was fixed.
* kcthread.cc (SpinLock::unlock, SlottedSpinLock::unlock): release lock is now used.
* kcmap.h (TinyArrayList): new class.
* kcdb.h (BasicDB::log): new function.
* kcdbext.h (IndexDB): new class.
* kcutiltest.cc (runtalist, proctalist): new functions.
* kcpolytest.h (runindex, procindex): new functions.
* kclangctest.cc (runlist, proclist): new functions.
- Release: 1.2.49
2011-03-01 FAL Labs <[email protected]>
* kclangc.h (kcmapnew, kcmapdel, kcmapiterator, kcmapsorter): new functions.
* kclangctest.cc (runmap, procmap): new functions.
- Release: 1.2.48
2011-02-25 FAL Labs <[email protected]>
* kcdb.h (BasicDB::occupy): new function.
- Release: 1.2.47
2011-02-23 FAL Labs <[email protected]>
* kcutil.h (SIZEMAX, FLTMAX, DBLMAX): new constants.
* kcplantdb.h (PlantDB::open): repair mechanism was modified.
* kcplantdb.h (PlantDB::Cursor::accept_spec): a bug related to transactin was fixed.
- all database classes were refactored to support some old compilers.
- Release: 1.2.46
2011-02-21 FAL Labs <[email protected]>
* kcdbext.h (MapReduce::execute): adaptive comparator was added.
* kcdbext.h (MapReduce::execute_reduce): new function.
* kcdbext.h (MapReduce::before, MapReduce::after): new functions.
- Release: 1.2.45
2011-02-15 FAL Labs <[email protected]>
* kcdb.h (DB::Visitor::visit_before, DB::Visitor::visit_after): new functions.
- configuration files were modified for affinity for binary distributions.
- all classes were refactored to abolish unnamed namespaces.
- Release: 1.2.44
2011-02-12 FAL Labs <[email protected]>
* kchashdb.h (HashDB): the type of record locking objects was changed.
* kcdirdb.h (DirDB): the type of record locking objects was changed.
* kcplantdb.h (PlantDB): the type of page locking objects was changed.
- Release: 1.2.43
2011-02-10 FAL Labs <[email protected]>
* kcdb.h (DB::Cursor::get_key, DB::Cursor::get_value): signature was modified.
* kcdb.h (DB::Cursor::get_pair, DB::Cursor::get): renamed.
* kcdb.h (DB::get): signature was modified.
- Release: 1.2.42
2011-02-07 FAL Labs <[email protected]>
* kccommon.h: macros for integer range were added.
* kchashdb.h (HashDB::begin_transaction): behavior of locking was modified.
* kcdirdb.h (DirDB::begin_transaction): behavior of locking was modified.
- Release: 1.2.41
2011-02-05 FAL Labs <[email protected]>
* kccompare.h (LexicalDescendingComparator, LexicalDescendingComparator): new classes.
* kccompare.h (LEXICALCOMP, DECIMALCOMP): the type was changed to pointer.
* kccompress.h (ZLIBRAWCOMP): the type was changed to pointer.
* kcplantdb.h (PlantDB::load_meta): a bug related to custom comparator was fixed.
- Release: 1.2.40
2011-02-01 FAL Labs <[email protected]>
* kcfile.cc (File::open): checking type type was added.
* kcplantdb.h (Plantdb::reorganize_file): recovery condition was modified.
* kcpolymgr.cc (proccheck): a bug related to path handling was fixed.
- Release: 1.2.39
2011-01-30 FAL Labs <[email protected]>
* kcthread.cc: threshold of sleep locking was modified.
* kcplantdb.h (PlantDB::accept): a bug related to race condition was fixed.
* kcplantdb.h (PlantDB::save_leaf_node): locking mode was modified.
- Release: 1.2.38
2011-01-25 FAL Labs <[email protected]>
* kcutil.h (strvecdump, strvecload, strmapdump, strmapload): new functions.
- Release: 1.2.37
2011-01-21 FAL Labs <[email protected]>
* kcutil.cc (getsysinfo): a bug related to memory stats was fixed.
* kcthread.cc (Thread::chill): new function.
* kcthread.cc (ScopedMutex, ScopedSpinLock): refactored using primitives.
* kcthread.cc (ScopedRWLock, ScopedSpinRWLock): refactored using primitives.
- Release: 1.2.36
2011-01-11 FAL Labs <[email protected]>
* kcutil.cc: the order of header inclusion was modified.
* kcthread.cc (SpinRWLock): space efficiency was improved.
- Release: 1.2.35
2011-01-09 FAL Labs <[email protected]>
* kcplantdb.h (PlantDB::accept, PlantDB::accept_bulk): behavior of async was modified.
- Release: 1.2.34
2011-01-05 FAL Labs <[email protected]>
* kcfile.cc (File::open): handling the WAL file was modified.
* kchashdb.h (HashDB::clear): handling the open flag was added.
* kcplantdb.h (PlantDB::clear): handling the recovery flag was modified.
- Release: 1.2.33
2011-01-03 FAL Labs <[email protected]>
* kcfile.cc (File::read_fast): error check was added.
* kclangc.cc (kcdbacceptbulk, kcdbsetbulk, kcdbremovebulk, kcdbgetbulk): new functions.
- Release: 1.2.32
2010-12-30 FAL Labs <[email protected]>
* kcdb.h (BasicDB::accept_bulk): new function.
* kcdb.h (BasicDB::set_bulk, BasicDB::remove_bulk, BasicDB::get_bulk): new functions.
* kcthread.h (SlottedMutex::unlock_all): the order became forward.
* kcpolymgr.cc (procsetbulk, procremovebulk, procgetbulk): new functions.
- Release: 1.2.31
2010-12-19 FAL Labs <[email protected]>
* kcpolydb.h (PolyDB::set_internal_db): new function.
- Release: 1.2.30
2010-12-11 FAL Labs <[email protected]>
* kccommon.h (modfl): new function for portability to cygwin.
* kcthread.cc (Mutex::lock_try): cygwin was added to work around cases.
* cmdcommon.h (oprintf): new function instead of "iprintf".
- Release: 1.2.29
2010-12-10 FAL Labs <[email protected]>
* ktutil.h (atoin, atofn): new functions.
- Release: 1.2.28
2010-11-30 FAL Labs <[email protected]>
* kcfile.cc (File::write, File::read): warnings on 32-bit environment were cleared.
* kcfile.cc (File::write_file, File::make_directory): modified for Win32 virus checkers.
- Release: 1.2.27
2010-11-28 FAL Labs <[email protected]>
* ktutil.h (vstrprintf): solved a compilation warning.
* kcdbext.h (MapReduce::~MapReduce): modified as a virtual function.
- Release: 1.2.26
2010-11-17 FAL Labs <[email protected]>
* kcdb.h (BasicDB::MetaTrigger): new class.
* kcdb.h (BasicDB::tune_trigger): new function.
* kcpolydb.h (PolyDB::StreamMetaTrigger): new class.
- Release: 1.2.25
2010-11-10 FAL Labs <[email protected]>
* kcstashdb.h, kcstashdb.o: new files.
- Release: 1.2.24
2010-11-06 FAL Labs <[email protected]>
* kcutil.h (sizevarnum): new function.
* kcmap.h (TinyHashMap): new class.
* kcdbext.h (MapReduce::execute): the cache algorithm was modified.
- Release: 1.2.23
2010-11-04 FAL Labs <[email protected]>
* kcutil.h (strsplit): new function.
* kcpolydb.h (PolyDB::match_prefix): performance of the prototype tree was improved.
- Release: 1.2.22
2010-11-02 FAL Labs <[email protected]>
* kcdbext.h (MapReduce::Emitter::emit): a bug on 32-bit environment was fixed.
* kcdbext.h (MapReduce::execute): the naming convention of databases was modified.
* kcregex.cc (Regex::compile): a bug related to error handling was fixed.
- Release: 1.2.21
2010-10-29 FAL Labs <[email protected]>
* kcdbext.h, kcdbext.cc: new files.
* kcpolytest.cc (runmapred, procmapred): new functions.
- Release: 1.2.20
2010-10-21 FAL Labs <[email protected]>
* kcpolydb.h (PolyDB::match_prefix, PolyDB::match_regex): new functions.
* kclangc.h (kcdbmatchprefix, kcdbmatchregex): new functions.
* kcregex.h: new file.
- Release: 1.2.19
2010-10-15 FAL Labs <[email protected]>
* kchashdb.h (HashDB::accept_impl): hash chaining algorithm was modified.
* kcpolymgr.cc (runclear, procclear): new functions.
- Release: 1.2.18
2010-10-11 FAL Labs <[email protected]>
* kcdb.h (BasicDB::Error::NOREPOS): new constant instead of "NOENTRY".
* configure.in: a building problem on Mac OS X was fixed.
- Release: 1.2.17
2010-10-03 FAL Labs <[email protected]>
* kcdb.h (BasicDB::Error::NOENTRY): new constant instead of "NOFILE".
* kchashdb. (HashDB::synchronize_impl): open flag handling was modified.
- Release: 1.2.16
2010-10-01 FAL Labs <[email protected]>
* kcfile.cc (File::open): how to set the recover flag was modified.
* kcfile.cc (File::rename, File::remove): difference of Win32 was absorbed.
* kchashdb.h (HashDB::defrag_impl): auto transaction is now supported.
* kchashdb.h (HashDB::abort_transaction): a bug related to the open flag was fixed.
- Release: 1.2.15
2010-09-23 FAL Labs <[email protected]>
* kcdb.h (BasicDB::tune_logger): new function.
* kcdb.h (BasicDB::increment_double): new function.
* kchashdb.h (HashDB::reorganize_file): copying method was modified.
* kchashdb.h (HashDB::begin_transaction_impl): performance was improved.
* kcplantdb.h (PlantDB::reorganize_file): copying method was modified.
* kcdirdb.h (DirDB::calc_magic): broken files are now removed.
- Release: 1.2.14
2010-09-13 FAL Labs <[email protected]>
* kcthread.h (TaskQueue): new class.
* kcdb.h (DB::Cursor::set_value_str): renamed to solve ambiguity.
- Release: 1.2.13
2010-09-08 FAL Labs <[email protected]>
* kcutil.h (kcurlencode, kcurldecode): new functions.
* kcutil.h (kcquoteencode, kcquotedecode): new functions.
* kcutil.h (kcbaseencode, kcbasedecode): new functions.
* kcutil.h (memdup, strdup, strtoupper, strtolower, strtrim): new functions.
* kclangc.h (kcmalloc, kcfree): the parameter type was modified.
- Release: 1.2.12
2010-09-04 FAL Labs <[email protected]>
* kcfile.cc (File::open, walwrite, walapply): mmap was discarded.
* kcplantdb.h (PlantDB::recalc_count): performance was improved.
* kcplantdb.h (PlantDB::fix_auto_transaction_leaf): performance was improved.
- Release: 1.2.11
2010-09-01 FAL Labs <[email protected]>
* kcprotodb.h (ProtoDB::report_valist): new function.
* kcplantdb.h (PlantDB::report_valist): new function.
* kchashdb.h (HashDB::read_record_body): magic data checking was added.
- Release: 1.2.10
2010-08-30 FAL Labs <[email protected]>
* kcdb.h (BasicDB::replace): new function.
* kcpolydb.h (PolyDB::merge): "MREPLACE" mode was added.
* kchashdb.h (HashDB::synchronize_impl): readers became able to call it.
* kcplantdb.h (PlantDB::synchronize): readers became able to call it.
* kcpolymgr.cc (runcopy, proccopy): new functions.
- Release: 1.2.9
2010-08-20 FAL Labs <[email protected]>
* kcfile.cc (File::remove_recursively): new function.
* kcdb.h (BasicDB::Logger): new class.
* kcdb.h (BasicDB::ProgressChecker): new class.
* kcfile.cc (File::remove, File::rename): timeout on Win32 was modified.
* kcpolydb.h (PolyDB::open): "erstrm" and "ervbs" were replaced by "log" and "logvbs".
* kcpolydb.h (PolyDB::merge): new function.
* kcpolymgr.cc (runmerge, procmerge): new functions.
- Release: 1.2.8
2010-08-18 FAL Labs <[email protected]>
* kcplantdb.h (PlantDB::rcomp): new function.
* kctreemgr.cc (runlist, proclist): descending order was added.
- Release: 1.2.7
2010-08-17 FAL Labs <[email protected]>
* kcthread.cc (CondVar): Win32 support was added.
* kcdb.h (jump_back, step_back): new functions.
* kcplantdb.h (jump_last, step_back): new functions.
* kcutiltest.cc (runpara, procpara): parallel tests were added.
- Release: 1.2.6
2010-08-07 FAL Labs <[email protected]>
* kccachedb.h (CacheDB::clear_slot): a bug related to transaction was fixed.
* kchashdb.h (HashDB::reorganize_file): a bug of overflow was fixed.
- Release: 1.2.5
2010-08-06 FAL Labs <[email protected]>
* kcutil.h (hashpath): variance was improved.
* kccompress.h (LZO::calculate_crc, LZMA::calculate_crc): new functions.
- Release: 1.2.4
2010-08-01 FAL Labs <[email protected]>
* kcutil.cc (getsysinfo): some information was added for Darwin and Win32.
* kcutil.cc (setstdiobin): new function.
* kccompress.h (LZO, LZMA): new classes.
* kcfile.cc (File::remove, File::rename): modified for Win32 virus checkers.
* kcpolydb.h (PolyDB::open): "zcomp=lzo" and "zcomp=lzma" were added.
- Release: 1.2.3
2010-07-29 FAL Labs <[email protected]>
* kcutil.cc (getsysinfo): new function.
* kccache.h (GrassDB): new class.
* kccachetest.cc: new file.
- Release: 1.2.2
2010-07-28 FAL Labs <[email protected]>
* kcompress.h (ArcfourComressor::ArcfourComressor): suppressed a warning.
* kccompress.h (ArcfourCompressor::set_compressor): new function.
* kcpolydb.h (PolyDB::open): "zcomp=arcz" was added.
* Makefile.in: now deals with an internal bug of GCC 4.2.1 on Mac OS X.
- Release: 1.2.1
2010-07-26 FAL Labs <[email protected]>
* kcdb.h (BasicDB): renamed from FileDB.
* kcplantdb.h: new file.
* kctreedb.h: removed.
* kchashdb.h (TreeDB): re-defined as a type alias.
* kcdirdb.h (ForestDB): new class as a type alias.
- Release: 1.2.0
2010-07-24 FAL Labs <[email protected]>
* kcutil.h (arccipher): new function.
* kccopmress.h (ArcfourCompressor): new class.
* kchashdb.h (HashDB::open): synchronize came to be called when auto sync mode.
* kcdirdb.h (DirDB::commit_transaction): synchronize came to be called.
* kcdirmgr.cc (dbmetaprint): status information became detail.
* kcpolydb.h (PolyDB::open): "zcomp" and "zkey" were added.
- Release: 1.1.1
2010-07-06 FAL Labs <[email protected]>
* kcutil.h (hexencode): performance was improved.
* kcfile.cc (read_file, write_file): new functions.
* kcdirdb.h, kcdirdb.cc, kcdirtest.cc, kcdirmgr.cc: new files.
- Release: 1.1.0
2010-07-04 FAL Labs <[email protected]>
* kcdb.h (typestring): refactored.
- Release: 1.0.4
2010-06-19 FAL Labs <[email protected]>
* kcdb.h: useless virtual attributes of some functions were abolished.
* kctreedb.h (synchronize): a bug related to a call back parameter was fixed.
* kcpolytest.cc (procqueue): a bug related to a log message was fixed.
- Release: 1.0.3
2010-06-05 FAL Labs <[email protected]>
* cmdcommon.h (mysrand): new function.
* cmdcommon.h (myrand): algorithm was changed.
- Release: 1.0.2
2010-05-25 FAL Labs <[email protected]>
* kcfile.cc (File::open): error messages were added.
* kcdb.h (DB::dump_snapshot, DB::load_snapshot): error codes were modified.
* kchashdb.h (HashDB::open): error codes were modified.
- Release: 1.0.1
2010-05-19 FAL Labs <[email protected]>
* kccommon.h: built-in macros with confliction were voided.
* kclangc.cc (kcdbcopy, kccursetvalue): new functions.
* kclangc.cc (kcatoi, kcatoix, kcatof): new functions.
* kclang.cc (kcnan, kcinf, kcchknan, kcchkinf): new functions.
- Release: 1.0.0
2010-05-06 FAL Labs <[email protected]>
* kccachetest.cc (procorder): a bug about record counting was fixed.
- Release: 0.9.18
2010-05-02 FAL Labs <[email protected]>
* kcdb.h (FileProcessor::process): parameters for meta data was modified.
- Release: 0.9.17
2010-04-28 FAL Labs <[email protected]>
* kccommon.h (_yield_, _testyield_, _assert_): new macros.
* kcfile.h (File::get_current_directory, File::set_current_directory): new functions.
- Release: 0.9.16
2010-04-21 FAL Labs <[email protected]>
* kcutil.h (inf, chknan, chkinf): new functions.
* kcfile.h (File::rename, File::read_directory): new function.
* kcdb.h (FileDB::copy): new function.
* kccommon.h: FreeBSD and Solaris support was added.
- Release: 0.9.15
2010-04-20 FAL Labs <[email protected]>
* kcfile.cc (File::close): unlocking operation was added.
* kcdb.h (FileProcessor::process): the offset parameter was abolished.
- Release: 0.9.14
2010-04-15 FAL Labs <[email protected]>
* kcutil.h (nan): new function.
* kcdb.h (File::DB::FileProcessor::process): parameters were added.
* kclangc.cc (kchashmurmur, kchashfnv): new functions.
* kcthread.cc: Win32 support was added.
* kcfile.cc: Win32 support was added.
* VCmakefile: new file.
- Release: 0.9.13
2010-04-13 FAL Labs <[email protected]>
* kcdb.h (DB::typestring): a miscellaneous type was added.
* kcpolydb.h (PolyDB::PolyDB): a constructor with a database object was added.
* kcthread.cc (Mutex::lock_try): Mac OS X support was added.
- Release: 0.9.12
2010-04-06 FAL Labs <[email protected]>
* kccommon.h: C++0x check was added.
* kcdb.h (DB::dump_snapshot, DB::load_snapshot): new functions.
* kcdb.h (DB::Cursor::set_value): new function.
* kchashmgr.c (procdump, procload): new functions.
* kctreemgr.c (procdump, procload): new functions.
* kclangc.cc (kcmalloc, kcdbdumpsnap, kcdbloadsnap): new functions.
- Release: 0.9.11
2010-04-01 FAL Labs <[email protected]>
* kcdb.h (DB::accept, DB::iterate): default parameters were added.
* kcdb.h (DB::Cursor::accept, DB::Cursor::get): default parameters were added.
- Release: 0.9.10
2010-03-28 FAL Labs <[email protected]>
* kcprotodb.h (ProtoDB::iterate): calls of empty visiting were abolished.
* kchashdb.h (HashDB::iterate): calls of empty visiting were abolished.
- Release: 0.9.9
2010-03-18 FAL Labs <[email protected]>
* kcdb.h (Error::operator_int32_t): new function.
* kcdb.h (FileDB::begin_transaction_try): new function.
* kcpolydb.h (PolyDB::Cursor::db): the type of the return value was modified.
* kcpolydb.h (PolyDB::open): the erstrm option was added.
* kcpolydb.h (PolyDB::Cursor::accept): life checking was added.
* kcpolytest (runmisc, procmisc): new functions.
- Release: 0.9.8
2010-03-14 FAL Labs <[email protected]>
* kclangc.h, kclangc.cc, kclangctest.c: new files.
- Release: 0.9.7
2010-03-13 FAL Labs <[email protected]>
* kctree.h (TreeDB::Cursor::accept_atom): validation check was added.
* kctree.h (TreeDB::escape_cursors): new function.
- Release: 0.9.6
2010-03-09 FAL Labs <[email protected]>
* kcfile.cc (File::recovered): new function.
* kchash.h (HashDB::recovered, HashDB::reorganized): new function.
* kctree.h (TreeDB::Cursor::accept_spec, TreeDB::Cursor::accept_atom): new functions.
- Release: 0.9.5
2010-03-06 FAL Labs <[email protected]>
* kctree.h (TreeDB::sub_link_tree): new function.
* kctree.h (TreeDB::reorganize_tree): tree trimming mechanism was added.
- Release: 0.9.4
2010-03-04 FAL Labs <[email protected]>
* kctree.h (TreeDB::Cursor::accept): a bug related drifted cursor was fixed.
* kchashtest.cc (runqueue, procqueue): new functions.
* kctreetest.cc (runqueue, procqueue): new functions.
- Release: 0.9.3
2010-03-03 FAL Labs <[email protected]>
* kcdb.h (DB::Error::string): abolished.
* kcdb.h (DB::Error::name, DB::Error::codename): new functions.
- Release: 0.9.2
2010-03-01 FAL Labs <[email protected]>
* kchashdb.h (HashDB::Curosr::jump): a bug of boundary checking was fixed.
* kchashdb.h (HashDB::report): new function.
* kcpolydb.h, kcpolydb.cc: new files.
- Release: 0.9.1
2010-02-16 FAL Labs <[email protected]>
* kctreedb.h (TreeDB::accept): auto transaction was added.
* kctreedb.h (TreeDB::Cursor::accept): auto transaction was added.
* kctreedb.h (TreeDB::fix_auto_transaction_tree): new function.
- Release: 0.9.0
2010-02-16 FAL Labs <[email protected]>
* kcthread.h (Thread::hash): new function.
* kchashdb.h (HashDB::accept): lock mechanism was modified to promotion locking.
* kchashdb.h (HashDB::adjust_record): a bug of boundary checking was fixed.
* kchashdb.h (HashDB::read_record): validation checking of size was added.
* kchashdb.h (HashDB::dfunit): new function.
- Release: 0.5.19
2010-02-13 FAL Labs <[email protected]>
* kcdb.h (DB::get): new function.
* kccompress.h (ZlibRawCompressor): new class.
* kccompare.h, kccompare.cc: new files.
* kchashdb.h (HashDB::escape_cursors): end sentry escaping was added.
- Release: 0.5.18
2010-02-11 FAL Labs <[email protected]>
* kcdb.h (Cursor::get, Cursor::get_pair): new functions.
* kchashmgr.c (runcreate, runinform): "-onr" option was added.
- Release: 0.5.17