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