Changed record update API . It is now handled by function
[idzebra-moved-to-github.git] / NEWS
1 Changed record update API . It is now handled by function
2 zebra_record_update which does insert/replace/delete/update of 
3 records . This function replaces zebra_record_{insert,delete} and
4 zebra_admin_exchange_record.
5
6 --- 2.0.12 2007/03/07
7
8 Fixed bug with indexing of attributes for rec.grs-class of filters.
9 If X-Path was enabled xelm a/@b would be ignored.
10
11 Fixed bug in register system where 'no more space' messages was produced
12 even though there was plenty of space.
13
14 Fixed bug #884: Entity declarations in input are lost at retrieval time.
15
16 Implemented new filter 'dom'. See test/xslt/dom-config*xml for examples. 
17 This, like alvis, performs indexing and retrieval using XSLT. But Unlike
18 alvis, it allows multiple XSLT steps to be performed and does ISO2709
19 reading. Bug #843.
20
21 --- 2.0.10 2007/01/24
22
23 Staticrank indexing is now an index register type defined in default.idx
24 via directive 'staticrank'. The 'staticrank' directive for grs is no longer
25 supported (was only implemented for Zebra 2.0.8).
26
27 For searches, allow truncmax value to be controlled with attribute 13.
28 If given, that overrides the value of 'truncmax'.
29
30 For truncations being limited (abort at truncmax terms), zebrasrv returns
31 SearchResponse with resultSetStatus=subset.
32
33 For estimated hit counts, zebrasrv returns SearchResponse with 
34 resultSetStatus=estimate.
35
36 --- 2.0.8 2007/01/15
37
38 For searches, do not truncate more than at most 'truncmax' terms in one
39 single term with right-truncation/regular attribute. By default, 'truncmax',
40 is 10000.
41
42 Bug #781: Easier tracking of result sets. We only do this when mkstemp
43 is available (most moderun Unixes supports this). The PID is included
44 in filename : tempdir/zrs_PID_XXXXXX.
45
46 Added support for specification of staticrank for grs-class of filters.
47 This is enabled by using 'staticrank indexname' in .abs. Contents of
48 indexname (elm ... indexname:w) is then used as value for staticrank.
49
50 Implemented sorting via the ISAMB system. To enable, use sortindex:i in
51 zebra.cfg.
52
53 Added special retrieval support for sort keys. These keys can also be
54 fetched using zebra::index:field:s   
55
56 Added support for specification of approximative limits for whole query.
57 This is specified as attribute type 12. Semantics is the same as
58 estimatehits in zebra.cfg.
59
60 --- 2.0.6 2006/11/28
61
62 Fixed bug #736: Updates gets slower.
63
64 Fixed bug #735: Delete fails to process rest of file after a record that
65 does not exist,
66
67 Added RPM package for Zebra 2.
68
69 Improved indexing speed for large documents.
70
71 Added support for special utility retrieval zebra:: which offers retrieval
72 of fundamental properties for record, such as indexed terms, raw record,
73 and system record ID.
74
75 --- 2.0.4 2006/10/16
76
77 Fixed bug #47: Commit needs to check for roll-back.
78
79 Fixed bug #672: Trailing characters in password are ignored
80
81 Added extra presence check for tcl.h, because some systems have
82 tclConfig.sh installed even though Tcl C headers are missing.
83
84 Optimized melm performance.
85
86 Do not use sync(2) during commit (but rely on sync'd individual files).
87
88 Fixed bug in ISAMB's utility function decode_ptr. With gcc -O3 on some
89 platforms the src argument was not updated. Problem was compiler
90 optimization due to strict aliasing rules.
91
92 --- 2.0.2 2006/09/22
93
94 Bug fixes: #638, #647, #657, #669.
95
96 Implement skip of 0 hit counts in scan. Useful for scan operations
97 limited by a result set.
98
99 Honor position attribute, i.e. allow first-in-field search. To
100 enable this, "firstinfield 1" must be given for an index in
101 default.idx. Enabled in tab/default.idx for w. At this stage
102 first-in field is supported for phrase/and-list/or-list searches
103
104 Common stream reader interface for record filters (struct ZebraRecStream).
105
106 Debian package fix: packages idzebra-2.0 + libidzebra-2.0-modules did
107 not depend properly on sub packages.
108
109 --- 2.0.0 2006/08/14
110
111 New record filter (record type) 'alvis' which uses XSLT transformations
112 to drive both indexing as well as retrieval. See example configuration in the
113 'example/alvis-oai' directory.
114
115 'isamb' is now the default ISAM system. In Zebra 1.3, the default ISAM was
116 'isamc'. The type used can still be configured with the 'isam' setting
117 in 'zebra.cfg'.
118
119 Index structure is now 64-bit based, also on 32 bit systems. 
120 There are no more 2GB register file limits.
121
122 Extended search result tuning. Approximate limit for terms can be enabled
123 and specified with attribute 11. The (approx or exact) hit count is returned
124 as part of the search response as in 1.3 series. The subqueryID of a search
125 term hit count can be specified with attribute 10.
126
127 Zebra uses string attributes for indexing internally. Using set+numeric
128 use attribute can still be used. This is a search-only conversion which
129 inspects '*.att'-set files as indicated using attset-directives in 'zebra.cfg'.
130 'attset' references are no longer required, but when used they deserve
131 as "check" for that the index names used are also present in '*.att'.
132
133 Zebra record filters (record type handlers) may be built as loadable
134 modules (.so's) on Unix. In particular the Zebra 2.0 Debian package uses
135 separate packages for each of them. This also means that zebra programs
136 such as zebraidx is no longer depending on Tcl/other..
137
138 Documentation updates, especially on query structure and syntax, SRU, 
139 XSLT support, alvis filter module, and many added examples.
140
141 Improved logging of the 'zebrasrv' and 'zebraidx' binaries.
142
143 Improved debian package structure.
144
145 --- 1.3.16 2004/08/16