-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog
1302 lines (651 loc) · 32.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
2010-08-15 FAL Labs <[email protected]>
* tchdb.cc (tchdbfbpmerge): size checking was added.
* tcbdb.cc (tcbdbrangeimpl): a bug of dead locking was fixed.
- Release: 1.4.47
2010-08-01 FAL Labs <[email protected]>
- site documents were modified.
- Release: 1.4.46
2010-04-27 FAL Labs <[email protected]>
* tcbdb.c (tcbdboutlist): a bug related to reorganizing tree was fixed.
- Release: 1.4.45
2010-04-23 FAL Labs <[email protected]>
* tcbdb.c (tcbdbrangefwm): a bug related to empty list was fixed.
* tcadb.c (tcadbmulopen): a bug related to handling table indices was fixed.
- Release: 1.4.44
2010-01-26 FAL Labs <[email protected]>
* tcutil.c (tcmapout): a useless condition was fixed.
* tchdb.h, tcbdb.h: some members have volatile flag now.
- Release: 1.4.43
2010-01-01 FAL Labs <[email protected]>
* tchdb.c (tchdbnew, tchdbsetmutex): a useless lock object was removed.
* tcutil.c (tcsysinfo): CPU information was added.
* tchmgr.c (runput, procput): addint and adddouble ouput the result now.
* tcbmgr.c (runput, procput): addint and adddouble ouput the result now.
* tcfmgr.c (runput, procput): addint and adddouble ouput the result now.
- Release: 1.4.42
2009-12-07 FAL Labs <[email protected]>
* tctdb.c (tctdbidxputtoken, tctdbidxputqgram): domain overflow checking was added.
- Release: 1.4.41
2009-11-24 FAL Labs <[email protected]>
* tchdb.c (tchdbputimpl): efficiency of using the free block pool was improved.
* tchdb.c (tchdboptimizeimpl): the behaviour in no lock mode was modified.
- Release: 1.4.40
2009-11-11 FAL Labs <[email protected]>
* tcutil.h (TCALIGNOF, tcgeneric_t): new macros.
* tcutil.h (TCALIGNPAD): the alignment is now calculated by the generic union.
* myconf.h (_alignof, _issigned, _maxof): new macros.
- Release: 1.4.39
2009-11-09 FAL Labs <[email protected]>
* tcutil.c (tcsysinfo): FreeBSD and Mac OS X are now supported.
* tcutil.c (tcmpoolclear): new function.
* tchdb.c (tchdbputproc): a potential bug of memory aligment violation was fixed.
* tcbdb.c (tcbdbputproc): a potential bug of memory aligment violation was fixed.
* tcfdb.c (tcfdbputproc): a potential bug of memory aligment violation was fixed.
- Release: 1.4.38
2009-10-27 FAL Labs <[email protected]>
* tctdb.c (tctdbcacheclear, tctdbcacheclearimpl): new functions.
* tcadb.c (tcadbmisc): "getpart", "cacheclear", and "regex" functions were added.
- Release: 1.4.37
2009-10-26 FAL Labs <[email protected]>
* tcutil.c (tcwwwformdecode2): a bug related to multiple cookie handling was fixed.
* tcadb.c (tcadbmisc): the "error" functions were added.
- Release: 1.4.36
2009-10-06 FAL Labs <[email protected]>
* tchdb.c (tchdbseekwrite): a bug related to emulation of the UBC was fixed.
* tchdb.c (tchdbvanishimpl): potential memory leak was removed.
* tcfdb.c (tcfdbvanishimpl): potential memory leak was removed.
* tcadb.c (tcadbsetskelmulti, tcadbmulnew, tcadbmuldel): new functions.
* tcadb.c (tcadbmisc): "range" sub function for B+ tree was added.
* tcamgr.c (setskeltran): new function.
* tcamttest.c: new file.
- Release: 1.4.35
2009-09-11 FAL Labs <[email protected]>
* myconf.h: a macro for environment without "nanl" was added.
* tctdbmetasearch (tctdbmetasearch): a bug related to the limit parameters was fixed.
- Release: 1.4.34
2009-08-31 FAL Labs <[email protected]>
* tcutil.h, tchdb.h, tcbdb.h, tcfdb.h, tctdb.h, tcadb.h: including stdbool.h was wrapped.
* tcutil.c (tccmpdecimal): accuracy was improved and now real number is supported.
* tctdb.c (tctdbqrycondmatch): accuracy of decimal operators was improved.
- Release: 1.4.33
2009-08-14 FAL Labs <[email protected]>
* tcutil.c (tctmpldumpeval): "INC", "PRT" operators and "SET" directive were added.
* tcutil.c (tcwwwformdecode2): a bug of memory corruption was fixed.
* tchdb.c (tchdbgetimpl): a bug related to caching large records was fixed.
- Release: 1.4.32
2009-07-23 FAL Labs <[email protected]>
* tcutil.c (tcmpoolpop, tcstatfile): new functions.
* tcutil.c (tcwwwformdecode2, tcarccipher): new functions.
* tcutil.c (tctmpldumpeval, tctmpldumpevalvar): type checking was improved.
- Release: 1.4.31
2009-07-13 FAL Labs <[email protected]>
* tctdb.c (tctdbstrtometasearcytype): new function.
* tcadb.c (tcadbmisc): "metasearch" command was added.
- Release: 1.4.30
2009-07-03 FAL Labs <[email protected]>
* tctdb.c (tctdbidxgetbyftsunion): efficiency counting sort was improved.
- Release: 1.4.29
2009-06-22 FAL Labs <[email protected]>
* tcutil.c (tcstrutfnorm, tcstrkwic, tcstrtokenize): new functions.
* tcutil.c (tcstrutfnorm, tcstrucsnorm): "TCUNWIDTH" option was added.
* tctdb.c (tctdbsetinvcache, tctdbidxsyncicc, tctdbidxcmpkey): new functions.
* tctdb.c (tctdbmetasearch, tctdbget4, tctdbqrykwic): new functions.
* tctdb.c (tctdbsetindeximpl): the xmsiz parameter is now configured.
- Release: 1.4.28
2009-06-16 FAL Labs <[email protected]>
* tcutil.c (tcstrskipspc, tcstrucsnorm): new functions.
* tctdb.c (tctdbqryaddcond): full-text search operators were added.
* tctdb.c (tctdbsetindex): q-gram inverted index was added.
* tctdb.c (tctdbidxputqgram, tctdbidxoutqgram, tctdbidxgetbyfts): new functions.
- Release: 1.4.27
2009-06-13 FAL Labs <[email protected]>
* tctdb.c (tctdbsetindex, tctdbsearchimpl): token inverted index was added.
* tctdb.c (tctdbidxputone, tctdbidxoutone): new functions.
* tctdb.c (tctdbidxputtoken, tctdbidxouttoken, tctdbidxgetbytokens): new functions.
* tcadb.c (tcadbput, tcadbputkeep, tcadbputcat): capnum behaviour was modified.
- Release: 1.4.26
2009-06-09 FAL Labs <[email protected]>
* tcutil.c (tccstrescape, tccstrunescape, tcjsonescape, tcjsonunescape): new functions.
* tcutil.c (tcpathlock, tcpathunlock): new functions.
* tchdb.c (tchdbopen): double opening detection was added.
* tchdb.c (tchdbtranbegin): a bug of invalid flag setting was fixed.
* tcfdb.c (tcfdbopen): double opening detection was added.
* tcfdb.c (tcfdbtranbegin): a bug of invalid flag setting was fixed.
* tctdb.c (tctdbiternext3): new function.
- Release: 1.4.25
2009-06-04 FAL Labs <[email protected]>
* tcutil.c (tcwwwformencode, tcwwwformdecode): new functions.
* tcutil.c (tctmplnew, tctmpldel, tctmplload, tctmpldump): new functions.
* tcutil.c (tcmapget4, tctreeget4): new functions.
* tcutil.c (tclistprintf, tcmapprintf, tctreeprintf): new functions.
* tcucodec.c (runtmpl, proctmpl): new functions.
- Release: 1.4.24
2009-05-24 FAL Labs <[email protected]>
* tcutil.c (tcmapiterinit2, tcmdbiterinit2): new functions.
* tchdb.c (tchdbiterinit2, tchdbiterjumpimpl): new functions.
* tcfdb.c (tcfdbiterinit2, tcfdbiterjumpimpl): new functions.
* tctdb.c (tctdbiterinit2): new function.
- Release: 1.4.23
2009-05-21 FAL Labs <[email protected]>
* tcadb.c (tcadbmisc): "sync", "optimize", "vanish" commands were added.
- Release: 1.4.22
2009-05-10 FAL Labs <[email protected]>
* tchdb.c (tchdbsetdfunit, tchdbdfunit, tchdbdefrag): new functions.
* tchdb.c (tchdbdefragimpl, tchdbfbptrim, tchdbshiftrec): new functions.
* tcbdb.c (tcbdbsetdfunit, tcbdbdfunit, tcbdbdefrag): new functions.
* tctdb.c (tctdbsetdfunit, tctdbdfunit, tctdbdefrag): new functions.
* tcadb.c (tcadbopen): "dfunit" parameter was added.
* tcadb.c (tcadbmisc): "defrag" command was added.
- Release: 1.4.21
2009-05-08 FAL Labs <[email protected]>
* tcutil.h: signedness of some members of TCMAP and TCTREE were changed.
* tcutil.c (tchexdecode): a bug related to handling space characters was fixed.
- Release: 1.4.20
2009-04-30 FAL Labs <[email protected]>
* tctdb.c (tctdbidxhash, tctdbqryproc2, tctdbqrysearchout2): new functions.
* tctdb.c (tctdbsearchimpl, tctdbidxput, tctdbidxout): the index format was modified.
* tcadb.c (tcadbmisc): "out" option of "search" command became non-atomic.
- Release: 1.4.19
2009-04-25 FAL Labs <[email protected]>
* tcutil.c (tcatoih): new function.
* tcbdb.c (tcbdbputimpl): cache adjustment on the putkeep mode was added.
* tcadb.c (tcadbsetskel): new function.
- Release: 1.4.18
2009-04-23 FAL Labs <[email protected]>
* tcutil.c (tcmapput, tcmapout, tcmapget): memory usage was reduced.
* tcutil.c (tcsysinfo): new function.
* tcutil.c (tcatoix): "strtold" was replaced by own implementation.
* tctdb.c (tctdbqryidxfetch): new function.
- Release: 1.4.17
2009-04-20 FAL Labs <[email protected]>
* tcbdb.c (tcbdbcuroutimpl): shift mechanism of cursors on deleted leaves was added.
* tcbdb.c (tcbdbleafcheck): new function.
- Release: 1.4.16
2009-04-08 FAL Labs <[email protected]>
* tcutil.c (tcsleep): new function.
* tchdb.c (tchdbtranbegin): locking algorithm was modified.
* tchdb.c (tchdblocktran, tchdbunlocktran): abolished.
* tcbdb.c (tcbdbtranbegin): locking algorithm was modified.
* tcbdb.c (tcbdbcurjumpimpl): a bug related to cursor initialization was fixed.
* tcfdb.c (tcbdbtranbegin): locking algorithm was modified.
* tcfdb.c (tcfdblocktran, tcfdbunlocktran): abolished.
* tctdb.c (tctdbqryallcondmatch): a bug related to handling null value was fixed.
* tcadb.c (tcadboptimize, tcadbpath): new functions.
- Release: 1.4.15
2009-04-07 FAL Labs <[email protected]>
* tcbdb.c (tcbdbputimpl, tcbdbcurputimpl): page size limitation was added.
* tcbdb.c (tcbdbleafdatasize): removed.
* tctdb.c (tctdbsetindeximpl): inner indexes were tuned.
- Release: 1.4.14
2009-04-02 FAL Labs <[email protected]>
* configure.in: a bug related to support for traditional shells was fixed.
* tcfdb.c (tcfdbtranbegin, tcfdbtrancommit, tcfdbtranabort): new functions.
* tcadb.c (tcadbtranbegin, tcadbtrancommit, tcadbtranabort): new functions.
- Release: 1.4.13
2009-03-21 FAL Labs <[email protected]>
* tctdb.c (tctdbqrycount): new function.
* tcadb.c (tcadbmisc): "count" option was added.
- Release: 1.4.12
2009-03-11 FAL Labs <[email protected]>
* tcutil.c (tctopsort): new function.
* tchdb.c (tchdbfbpinsert, tchdbfbpsearch, tchdbfbpsplice): performance was improved.
* tchdb.c (tchdbwriterec): concurrency was improved.
* tctdb.c (tctdbqrysearchimpl): a bug related to the skip parameter was fixed.
* tctdb.c (tctdbputimpl, tctdbidxout, tctdbqrysearchimpl): performance was improved.
- Release: 1.4.11
2009-03-02 FAL Labs <[email protected]>
* tcutil.c (tcmdbputproc, tcndbputfunc): removing mechanism was added.
* tchdb.c (tchdbwalrestore): a bug of memory corruption was fixed.
* tchdb.c (tchdbremoverec): new function.
* tchdb.c (tchdbputproc): removing mechanism was added.
* tcbdb.c (tchdbputproc): removing mechanism was added.
* tcfdb.c (tcfdbputproc): removing mechanism was added.
* tctdb.c (tctdbsetlimit): new function instead of "tctdbqrysetmax".
* tcadb.c (tcadbmisc): "setlimit" parameter was added.
- Release: 1.4.10
2009-02-18 FAL Labs <[email protected]>
* tcbdb.c (tcbdbnodesubidx): a bug related to tree reconstruction was fixed.
* tcbdb.c (tcbdboptimizeimpl): memory usage was reduced.
- Release: 1.4.9
2009-02-18 FAL Labs <[email protected]>
* tcutil.c (tclrand): bias of random numbers was lightened.
* tchdb.c (tchdbsetecode): a trick to print fatal errors only was added.
* tcbdb.c (tcbdbputimpl): a bug of mixing an useless entry on division was fixed.
* tcbdb.c (tcbdbnodesubidx): regions of useless nodes are now removed recursively.
* tcadb.c (tcadbopen): aliases of the database suffixes were added.
- Release: 1.4.8
2009-02-15 FAL Labs <[email protected]>
* tctdb.c (tctdbsetindex): "TDBITOPT" option was added.
- Release: 1.4.7
2009-02-13 FAL Labs <[email protected]>
* tctdb.c (tctdbgenuidimpl): the meta data format was normalized to the big endian.
* tctdb.c (tctdbsetuidseed): new function.
* tcadb.c (tcadbmisc): "get" function of the table database was enhanced.
- Release: 1.4.6
2009-02-02 FAL Labs <[email protected]>
* tchdb.c (tchdbput, tchdbget, tchdbout): bugs related to race condition were fixed.
* tchdb.c (tchdbputimpl): bugs related to race condition were fixed.
* tchmttest.c (runrace, procrace): new functions.
* tcbmttest.c (runrace, procrace): new functions.
- Release: 1.4.5
2009-01-29 FAL Labs <[email protected]>
* tcutil.c (tcmapputproc, tctreeputproc, tcmdbputproc, tcndbputproc): new functions.
* tchdb.c (tchdbputproc): new function.
* tchdb.c (TDBTHREADYIELD): "sched_yield" is now used instead of "pthread_yield".
* tcbdb.c (tcbdbputproc): new function.
* tcbdb.c (tcbdbcurkey, tcbdbcurval): the type of the return value was modified.
* tcfdb.c (tcfdbputproc): new function.
* tcadb.c (tcadbputproc): new function.
* tcadb.c (tcadbmisc): sub funcitons "put", "out", and "get" were added.
* tcadb.c (tcstrisnum): new function.
- Release: 1.4.4
2009-01-26 FAL Labs <[email protected]>
* tctdb.c (tctdbqryprocout): renamed as "tctdbqrysearchout".
* tcadb.c (tcadbmisc): sub functions "searchget" and "searchget" were integrated.
- Release: 1.4.3
2009-01-21 FAL Labs <[email protected]>
* tcutil.c (tcatof): new function.
* tcbdb.c (tcbdbleafaddrec): allocation tuning of duplicated records was modified.
* tcadb.c: all methods now support the table database API.
- Release: 1.4.2
2009-01-19 FAL Labs <[email protected]>
* tcutil.c (tctdbsearchimpl): optimized with macros.
* tcbdb.c (tcbdbcurjumpimpl): a bug related to backword positioning was fixed.
* tctdb.c (tctdbsearchimpl): a bug related to numeric range search was fixed.
* tctdb.c (tctdbsetcache, tctdbforeach, tctdbqryproc): new functions.
* tctdb.c (tctdbqryonecondmatch): new function.
- Release: 1.4.1
2009-01-04 FAL Labs <[email protected]>
* tcutil.c (tccmpdecimal): equal numbers are now distinct by lexical order.
* tcutil.c (tclistnew3, tcmapnew3): new functions.
* tcutil.c (tcatoix, tclistinvert, tclog2l, tclog2d): new functions.
* tcutil.c (tcstrsplit2, tcstrsplit3, tcstrsplit4): new functions.
* tcutil.c (tcstrjoin2, tcstrjoin3, tcstrjoin4): new functions.
* tchdb.c (tchdbputimpl): a bug of memory corruption was fixed.
* tchdb.c (tchdbgetnext3): new function.
* tcbdb.c (tcbdbleafaddrec): a bug of memory corruption was fixed.
* tcbdb.c (tcbdboptimizeimpl): a bug related to parameter accession was fixed.
* tctdb.h, tctdb.c, tcttest.c, tctmttest.c, tctmgr.c: new files.
- Release: 1.4.0
2008-12-27 FAL Labs <[email protected]>
* tcadb.c (tcadbmisc): the return value of "getlist" function was modified.
- Release: 1.3.27
2008-12-17 FAL Labs <[email protected]>
* tchdb.c (tchdbforeach): global locking was replaced by record locking.
* tcbdb.c (tcbdbforeachimpl): cache adjustment was added.
* tcadb.c (tcadbmisc): new function.
- Release: 1.3.26
2008-12-16 FAL Labs <[email protected]>
* tcbdb.c (tcbdbsearchleaf): performance was improved.
- Release: 1.3.25
2008-12-08 FAL Labs <[email protected]>
* tcutil.c (tcmdbforeach, tcmdbforeachimpl): new functions.
* tcutil.c (tcndbforeach, tcndbforeachimpl): new functions.
* tcutil.c (tctreenew2, tcndbnew2): type of the comparison function was modified.
* tcutil.c (tcstrdist, tcstrdistutf): maximum memory usage was limited.
* tchdb.c (tchdbforeach, tchdbforeachimpl): new functions.
* tchdb.c (tchdboptimizeimpl): performance was improved.
* tcbdb.c (tcbdbforeach, tcbdbforeachimpl): new functions.
* tcbdb.c (tcbdbsetcmpfunc): BDBCMP was changed to TCCMP.
* tcbdb.c (tcbdbcmplexical, tcbdbcmpdecimal, tcbdbcmpint32, tcbdbcmpint64): removed.
* tcfdb.c (tcfdbforeach, tcfdbforeachimpl): new functions.
* tcadb.c (tcadbomode, tcadbreveal): new functions.
- Release: 1.3.24
2008-12-03 FAL Labs <[email protected]>
* tcbdb.c (tcbdbtranbegin): conbination of non-transaction and transaction became safer.
- Release: 1.3.23
2008-11-28 FAL Labs <[email protected]>
* tcutil.c (tcmapput3, tcmdbput3, tcmapputcat3, tcmdbputcat3): new functions.
* tcutil.c (tctreeput3, tcndbput3): new functions.
* tcadb.c (tcadbput, tcadbputcat): LRU rule is now strictly applied.
- Release: 1.3.22
2008-11-22 FAL Labs <[email protected]>
* tchdb.c (tchdbwalrestore): a bug on systems without unified buffer cache was fixed.
- Release: 1.3.21
2008-11-21 FAL Labs <[email protected]>
* tchdb.c (tchdbtranbegin, tchdbtrancommit, tchdbtranabort): new functions.
- Release: 1.3.20
2008-11-19 FAL Labs <[email protected]>
* tchdb.c (tchdbaddint, tchdbadddouble): bugs related to the return value were fixed.
- Release: 1.3.19
2008-11-10 FAL Labs <[email protected]>
* tcutil.c (tcptrlistnew, tcptrlistdel): new functions.
* tcbdb.c (tcbdbputimpl, tcbdboutimpl, tcbdbgetimpl): new functions.
- Release: 1.3.18
2008-11-07 FAL Labs <[email protected]>
* tcutil.c (tcmdbnew, tcmdbdel, tcmdbopen, tcmdbclose): new functions.
* tcadb.c (tcadbnew, tcadbdel): on-memory tree database is now supported.
- Release: 1.3.17
2008-10-30 FAL Labs <[email protected]>
* tcutil.c (tcmapdup): performance was improved.
* tcutil.c (tctreenew, tctreedel, tctreeopen, tctreeclose): new functions.
* tcutil.c (tcsystem): new function.
* tchdb.c (tchdbopenimpl): memory usage of reader declined.
* tcadb.c (tcadbsync, tcadbcopy): on-memory database is now supported.
- Release: 1.3.16
2008-10-20 FAL Labs <[email protected]>
* tcutil.c (tcmapput, tcmapout, tcmapget): performance was improved.
* tcutil.c (tcnumtobinstr): new function.
* tchdb.c (tchdbbidx): performance was improved.
- Release: 1.3.15
2008-10-05 FAL Labs <[email protected]>
* myconf.h: missing features of PATH_MAX and nan is now emulated.
* tcutil.c (tczeromap, tczerounmap): new functions.
- Release: 1.3.14
2008-10-19 FAL Labs <[email protected]>
* tcutil.c (tcmdbadddouble): NAN were replaced by the nan function.
* Makefile.in: the compilation command now supports Solaris.
- Release: 1.3.13
2008-10-05 FAL Labs <[email protected]>
* tcutil.c (tchexencode, tchexdecode): new functions.
* tchdb.c (tchdbaddint): a bug of error code setting was fixed.
- Release: 1.3.12
2008-09-23 FAL Labs <[email protected]>
* tchdb.c (tchdbputimpl): performance of the ADDINT mode was improved.
* tcbdb.c (tcbdbleafaddrec): performance of the ADDINT mode was improved.
* tcfdb.c (tcfdbputimpl): performance of the ADDINT mode was improved.
* tcutil.c (tcpagealign): new function.
* tchdb.c (tchdbsetxmsiz): the parameter is now rounded up to multiple of the page size.
* tcfdb.c (tcfdbtune): the parameter is now rounded up to multiple of the page size.
* tchdb.c (tcseekwrite, tcseekread, tcseekreadtry): page border handling was added.
- Release: 1.3.11
2008-09-20 FAL Labs <[email protected]>
* tcutil.c (tcunlock): new function.
* tchdb.c (tchdbsetmutex): useless locking was eliminated.
* tcbdb.c (tcbdbsetmutex): useless locking was eliminated.
* tcfdb.c (tcfdbsetmutex): useless locking was eliminated.
- Release: 1.3.10
2008-09-10 FAL Labs <[email protected]>
* tchdb.c (tchdblockallrecords, tchdbunlockallrecords): new functions.
* tcfdb.c (tcfdblockallrecords, tcfdbunlockallrecords): new functions.
- Release: 1.3.9
2008-09-05 FAL Labs <[email protected]>
* tcutil.c (tcmapaddint, tcmapadddouble): checking data size was added.
- Release: 1.3.8
2008-09-03 FAL Labs <[email protected]>
* tcutil.c (tcmapaddint, tcmapadddouble): type of the return value was changed.
* tcfdb.c (tcfdbkeytoid): added as API.
* tcadb.c (tcadbaddint, tcadbadddouble): new functions.
- Release: 1.3.7
2008-09-03 FAL Labs <[email protected]>
* tcutil.c (tclrand, tcdrand): a bug of overflow on 64-bit environment was fixed.
* tcutil.c (tcmdbaddint, tcmdbadddouble): new functions.
* tchdb.c (tchdbaddint, tchdbadddouble): new functions.
* tcbdb.c (tcbdbaddint, tcbdbadddouble): new functions.
* tcfdb.c (tcfdbaddint, tcfdbadddouble): new functions.
- Release: 1.3.6
2008-08-25 FAL Labs <[email protected]>
* tcutil.c (tcatoi): new function.
* tchdb.c (HDBDEFBNUM): increased for typical usecases.
* tcbdb.c (BDBDEFBNUM): increased for typical usecases.
* tchdb.c (tchdbsetxmsiz, tchdbxmsiz): new functions.
- Release: 1.3.5
2008-08-23 FAL Labs <[email protected]>
* tchdb.c (tcseekreadtry): new function.
- Release: 1.3.4
2008-08-20 FAL Labs <[email protected]>
* tchdb.c (tchdblockrecord, tchdbunlockrecord): new functions.
* tchdb.c (tchdbputimpl, tchdboutimpl, tchdbgutimpl): concurrency was improved.
- Release: 1.3.3
2008-08-01 FAL Labs <[email protected]>
* tcutil.c (tcmapaddint, tcmapput3, tcmdbput3): mismatch of signature was fixed.
* tcutil.c (tcmapadddouble): new function.
- Release: 1.3.2
2008-07-29 FAL Labs <[email protected]>
* tcadb.c (tcadbopen): "opts=b" option is now supported.
- Release: 1.3.1
2008-07-15 FAL Labs <[email protected]>
* tcutil.c (tcmd5hash): new function.
* tcutil.c (tcchidxnew, tcchidxdel, tcchidxhash): refactoring.
* tcutil.c (tcbzipencode, tcbzipdecode): new functions.
* tchdb.c (tchdbsetcodecfunc, tchdbcodecfunc): new functions.
* tcbdb.c (tcbdbsetcodecfunc, tcbdbcodecfunc): new functions.
* md5.h, md5.c: new files, whose author is L. Peter Deutsch.
* myconf.c (_tc_bzcompress_impl, _tc_bzdecompress_impl): new functions.
* myconf.c (_tc_recencode, _tc_recdecode): new functions.
- Release: 1.3.0
2008-07-11 FAL Labs <[email protected]>
* tchdb.c (tchdbcacheclear): new function.
* tcbdb.c (tcbdbcacheclear): new function.
- Release: 1.2.12
2008-07-08 FAL Labs <[email protected]>
* tcutil.c (tcmapkeys2, tcmapvals2): new functions.
* tchdb.c (tchdboptimizeimpl): user meta data is now to be copied.
- Release: 1.2.11
2008-07-01 FAL Labs <[email protected]>
* tcutil.c (tcjetlag): missing of "timezone" variable is now allowed.
- Release: 1.2.10
2008-06-17 FAL Labs <[email protected]>
* tcutil.c (tcjetlag): new function.
* tcutil.c (tcmkgmtime): a bug related to time difference was fixed.
* tchdb.c (tchdbgetnext, tchdbgetnext2): new functions.
* tchtest.c (runwrite, procwrite): "-rnd" option was added.
* tcbtest.c (runwrite, procwrite): "-rnd" option was added.
* tcftest.c (runwrite, procwrite): "-rnd" option was added.
- Release: 1.2.9
2008-06-01 FAL Labs <[email protected]>
* tcutil.c (tcerrmsg): new function.
* tcfdb.h, tcfdb.c: new files.
* tcadb.c: fixed-length database is now supported.
- Release: 1.2.8
2008-05-23 FAL Labs <[email protected]>
* tcutil.c (tcchordnew, tcchorddel, tcchordhash): new functions.
* tcbdb.c (tcbdbleafload, tcbdbnodeload): memory leak bugs with multi-thread were fixed.
- Release: 1.2.7
2008-05-01 FAL Labs <[email protected]>
* myconf.h: code cleanup.
* tcutil.c (tcmimebreak, tcmimeparts): new functions.
* tchdb.c, tcbdb.c, tcadb.c: "free" was replaced by "tcfree".
* tcbdb.c (tcbdbtrancommit, tcbdbtranabort): cache adjustment was added.
* tchdb.c (tchdbsetecode): a bug of processing unopened files was fixed.
* tcawmgr.c: new file.
- Release: 1.2.6
2008-04-22 FAL Labs <[email protected]>
* tcbdb.c (tcbdbcmpdecimal, tcbdbcmpint32, tcbdbcmpint64): bugs of overflow were fixed.
- Release: 1.2.5
2008-04-13 FAL Labs <[email protected]>
* tcbdb.c (tcbdbopenimpl): comparison function checking was added.
* tcadb.c (tcadbopen): "capnum" option is now supported for B+ tree.
- Release: 1.2.4
2008-04-07 FAL Labs <[email protected]>
* tcutil.c (tcregexmatch, tcregexreplace, tcglobpat): new functions.
* tcbdb.c (tcbdbcmpfunc, tcbdbcmpop): new functions.
* tcbdb.c (tcbdboptimizeimpl): leaf size limitation is now implemented.
* tcbdb.c (tcbdbsetcapnum): new function.
- Release: 1.2.3
2008-03-19 FAL Labs <[email protected]>
* tcutil.c (tcmapnew2): "calloc" is now used.
* tcbdb.c (tcbdbputimpl): algorithm to divide large leaves was modified.
- Release: 1.2.2
2008-03-13 FAL Labs <[email protected]>
* tcutil.c (tclistelemcmp, tclistelemcmpci): bugs about multibyte ordering were fixed.
* tcutil.c (tclistsortex): new function.
* tcbdb.c (tcbdbsetecode): new function.
* tcadb.c (tcadbopen): "c", "t", "e", and "w" options were added.
- Release: 1.2.1
2008-02-18 FAL Labs <[email protected]>
* tcmdb.c (tcmdbfwmkeys, tcmdbfwmkeys2): new functions.
* tchdb.c (tchdbfwmkeys, tchdbfwmkeys2): new functions.
* tcbdb.c (tcbdbfwmkeys, tcbdbfwmkeys2): new functions instead of "tcbdbrange3".
* tcadb.c (tcadbfwmkeys, tcadbfwmkeys2): new functions.
* tcbdb.c (tcbdbrangeimpl): a bug related to mutex operation was fixed.
- The library version was bumped up for some binary packages.
- Release: 1.2.0
2008-02-15 FAL Labs <[email protected]>
* tcutil.c (tcbwtsortchrcount): time efficiency was improved.
- The library version was bumped up for some binary packages.
- Release: 1.1.15
2008-02-05 FAL Labs <[email protected]>
* tcatest.c (runwicked, procwicked): new functions.
- Release: 1.1.14
2008-01-30 FAL Labs <[email protected]>
* tcutil.c (tctime): measure unit was changed to in seconds.
* tchdb.c (tchdbcopy): shared lock is now used.
* tcadb.c (tcadbsync, tcadbcopy): new functions.
- Release: 1.1.13
2008-01-23 FAL Labs <[email protected]>
* tcbdb.c (tcbdbleafkill, tcbdbnodesubidx): new functions.
* tcbtest.c (runqueue, procqueue): new functions.
- Release: 1.1.12
2008-01-20 FAL Labs <[email protected]>
* tcutil.c (tcmapmsiz, tcmdbmsiz, tcadbsize): new functions.
* tcutil.c (tcglobalmutexshared): new function.
* tcutil.c (tcglobalmutexinit, tcglobalmutexdestroy): new functions.
* tcutil.c (tcreadfile): a bug related to the size assignment was fixed.
* tcadb.c (tcadbopen): "capsiz" parameter was added.
- Release: 1.1.11
2008-01-17 FAL Labs <[email protected]>
* tcutil.c (tclistshift, tclistshift2): memory alignment was improved.
* tcutil.c (tcvxstrprintf): a bug related to format of long long integer was fixed.
- Release: 1.1.10