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