No reference to yaz/tab in manual or zebra.cfg's.
[idzebra-moved-to-github.git] / doc / examples.xml
1 <chapter id="examples">
2  <!-- $Id: examples.xml,v 1.14 2002-10-30 13:59:42 adam Exp $ -->
3  <title>Example Configurations</title>
4
5  <sect1>
6   <title>Overview</title>
7
8   <para>
9    <literal>zebraidx</literal> and <literal>zebrasrv</literal> are both
10    driven by a master configuration file, which may refer to other
11    subsidiary configuration files.  By default, they try to use
12    <filename>zebra.cfg</filename> in the working directory as the
13    master file; but this can be changed using the <literal>-c</literal>
14    option to specify an alternative master configuration file.
15   </para>
16   <para>
17    The master configuration file tells Zebra:
18    <itemizedlist>
19
20     <listitem>
21      <para>
22       Where to find subsidiary configuration files, including
23       <literal>default.idx</literal>
24       which specifies the default indexing rules.
25      </para>
26     </listitem>
27
28     <listitem>
29      <para>
30       What attribute sets to recognise in searches.
31      </para>
32     </listitem>
33
34     <listitem>
35      <para>
36       Policy details such as what record type to expect, what
37       low-level indexing algorithm to use, how to identify potential
38       duplicate records, etc.
39      </para>
40     </listitem>
41
42    </itemizedlist>
43   </para>
44   <para>
45    Now let's see what goes in the <literal>zebra.cfg</literal> file
46    for some example configurations.
47   </para>
48  </sect1>
49
50  <sect1 id="example1">
51   <title>Example 1: XML Indexing And Searching</title>
52
53   <para>
54    This example shows how Zebra can be used with absolutely minimal
55    configuration to index a body of
56    <ulink url="http://www.w3.org/xml/###">XML</ulink>
57    documents, and search them using
58    <ulink url="http://www.w3.org/xpath/###">XPath</ulink>
59    expressions to specify access points.
60   </para>
61   <para>
62    Go to the <literal>examples/dinosauricon</literal> subdirectory
63    of the distribution archive.
64    There you will find a <literal>records</literal> subdirectory,
65    which contains some raw XML data to be added to the database: in
66    this case, as single file, <literal>genera.xml</literal>,
67    which contain information about all the known dinosaur genera as of
68    August 2002.
69   </para>
70   <para>
71    Now we need to create the Zebra database, which we do with the
72    Zebra indexer, <literal>zebraidx</literal>, which is
73    driven by the <literal>zebra.cfg</literal> configuration file.
74    For our purposes, we don't need any
75    special behaviour - we can use the defaults - so we start with a
76    minimal file that just tells <literal>zebraidx</literal> where to
77    find the default indexing rules, and how to parse the records:
78    <screen>
79     profilePath: .:../../tab
80     recordType: grs.sgml
81    </screen>
82   </para>
83   <para>
84    That's all you need for a minimal Zebra configuration.  Now you can
85    roll the XML records into the database and build the indexes:
86    <screen>
87     zebraidx update records
88    </screen>
89   </para>
90   <para>
91    Now start the server.  Like the indexer, its behaviour is
92    controlled by the
93    <literal>zebra.cfg</literal> file; and like the indexer, it works
94    just fine with this minimal configuration.
95    <screen>
96         zebrasrv
97    </screen>
98    By default, the server listens on IP port number 9999, although
99    this can easily be changed - see 
100    <xref linkend="zebrasrv"/>.
101   </para>
102   <para>
103    Now you can use the Z39.50 client program of your choice to execute
104    XPath-based boolean queries and fetch the XML records that satisfy
105    them:
106    <screen>
107     $ yaz-client tcp:@:9999
108     Connecting...Ok.
109     Z&gt; find @attr 1=/GENUS/SPECIES/AUTHOR/@name Wedel
110     Number of hits: 1
111     Z&gt; format xml
112     Z&gt; show 1
113     &lt;GENUS name="Sauroposeidon" type="with"&gt;
114      &lt;MEANING&gt;lizard Poseidon &lt;LOW&gt;(Greek god of, among other things, earthquakes)&lt;/LOW&gt;&lt;/MEANING&gt;
115      &lt;SPECIES name="proteles"&gt;
116       &lt;AUTHOR type="vide" name="Franklin" year="2000"&gt;&lt;/AUTHOR&gt;
117       &lt;AUTHOR name="Wedel, Cifelli, Sanders"&gt;&lt;/AUTHOR&gt;
118      &lt;/SPECIES&gt;
119      &lt;PLACE name="Oklahoma"&gt;&lt;/PLACE&gt;
120      &lt;TIME value="Albian"&gt;&lt;/TIME&gt;
121      &lt;LENGTH value="30" q="1"&gt;&lt;/LENGTH&gt;
122      &lt;REMAINS content="rib, cervical vertebrae"&gt;&lt;/REMAINS&gt;
123      &lt;ESSAY&gt;
124       &lt;P&gt; This new &lt;NOMEN name="Brachiosaurus"&gt;&lt;/NOMEN&gt;-like &lt;LINK content="dinosaur"&gt;&lt;/LINK&gt;
125       was perhaps the tallest. With its head raised, it stood 60 feet (nearly
126       20 m) tall. &lt;/P&gt;
127      &lt;/ESSAY&gt;
128
129       &lt;idzebra xmlns="http://www.indexdata.dk/zebra/"&gt;
130         &lt;size&gt;593&lt;/size&gt;
131         &lt;localnumber&gt;891&lt;/localnumber&gt;
132         &lt;filename&gt;records/genera.xml&lt;/filename&gt;
133       &lt;/idzebra&gt;
134     &lt;/GENUS&gt;
135    </screen>
136   </para>
137   <para>
138    Now wasn't that easy?
139   </para>
140  </sect1>
141
142
143  <sect1 id="example2">
144   <title>Example 2: Supporting Interoperable Searches</title>
145
146   <para>
147    The problem with the previous example is that you need to know the
148    structure of the documents in order to find them.  For example,
149    when we wanted to know the genera for which Matt Wedel is an
150    author
151    (<foreignphrase role="taxon">Sauroposeidon proteles</foreignphrase>),
152    we had to formulate a complex XPath 
153    <literal>1=/GENUS/SPECIES/AUTHOR/@name</literal>
154    which embodies the knowledge that author names are specified in the
155    <literal>name</literal> attribute of the
156    <literal>&lt;AUTHOR&gt;</literal> element,
157    which is inside the
158    <literal>&lt;SPECIES&gt;</literal> element,
159    which in turn is inside the top-level
160    <literal>&lt;GENUS&gt;</literal> element.
161   </para>
162   <para>
163    This is bad not just because it requires a lot of typing, but more
164    significantly because it ties searching semantics to the physical
165    structure of the searched records.  You can't use the same search
166    specification to search two databases if their internal
167    representations are different.  Consider an alternative dinosaur
168    database in which the records have author names specified
169    inside an <literal>&lt;authorName&gt;</literal> element directly
170    inside a top-level <literal>&lt;taxon&gt;</literal> element: then
171    you'd need to search for them using
172    <literal>1=/taxon/authorName</literal>
173   </para>
174   <para>
175    How, then, can we build broadcasting Information Retrieval
176    applications that look for records in many different databases?
177    The Z39.50 protocol offers a powerful and general solution to this:
178    abstract ``access points''.  In the Z39.50 model, an access point
179    is simply a point at which searches can be directed.  Nothing is
180    said about implementation: in a given database, an access point
181    might be implemented as an index, a path into physical records, an
182    algorithm for interrogating relational tables or whatever works.
183    The key point is that the semantics of an access point are fixed
184    and well defined.
185   </para>
186   <para>
187    For convenience, access points are gathered into <firstterm>attribute
188    sets</firstterm>.  For example, the BIB-1 attribute set is supposed to
189    contain bibliographic access points such as author, title, subject
190    and ISBN; the GEO attribute set contains access points pertaining
191    to geospatial information (bounding box, ###, etc.); the CIMI
192    attribute set contains access points to do with museum collections
193    (provenance, inscriptions, etc.)
194   </para>
195   <para>
196    In practice, the BIB-1 attribute set has tended to be a dumping
197    ground for all sorts of access points, so that, for example, it
198    includes some geospatial access points as well as strictly
199    bibliographic ones.  Nevertheless, the key point is that this model
200    allows a layer of abstraction over the physical representation of
201    records in databases.
202   </para>
203   <para>
204    In the BIB-1 attribute set, an author search is represented by
205    access point 1003.  (See
206    <ulink url="###bib1-semantics"/>)
207    So we need to configure our dinosaur database so that searches for
208    BIB-1 access point 1003 look the 
209    <literal>name</literal> attribute of the
210    <literal>&lt;AUTHOR&gt;</literal> element,
211    inside the
212    <literal>&lt;SPECIES&gt;</literal> element,
213    inside the top-level
214    <literal>&lt;GENUS&gt;</literal> element.
215   </para>
216   <para>
217    This is a two-step process.  First, we need to tell Zebra that we
218    want to support the BIB-1 attribute set.  Then we need to tell it
219    which elements of its record pertain to access point 1003.
220   </para>
221   <para>
222    We need to create an <link linkend="abs-file">Abstract Syntax
223    file</link> named after the document element of the records we're
224    working with, plus a <literal>.abs</literal> suffix - in this case,
225    <literal>GENUS.abs</literal> - as follows:
226   </para>
227   <itemizedlist>
228    <listitem>
229     <para>
230      
231     </para>
232    </listitem>
233    <listitem>
234     <para>
235     </para>
236    </listitem>
237   </itemizedlist>
238  </sect1>
239 </chapter>
240
241
242 <!--
243         The simplest hello-world example could go like this:
244         
245         Index the document
246         
247         <book>
248            <title>The art of motorcycle maintenance</title>
249            <subject scheme="Dewey">zen</subject>
250         </book>
251         
252         And search it like
253         
254         f @attr 1=/book/title motorcycle
255         
256         f @attr 1=/book/subject[@scheme=Dewey] zen
257         
258         If you suddenly decide you want broader interop, you can add
259         an abs file (more or less like this):
260         
261         attset bib1.att
262         tagset tagsetg.tag
263         
264         elm (2,1)       title   title
265         elm (2,21)      subject  subject
266 -->
267
268 <!--
269 How to include images:
270
271         <mediaobject>
272           <imageobject>
273             <imagedata fileref="system.eps" format="eps">
274           </imageobject>
275           <imageobject>
276             <imagedata fileref="system.gif" format="gif">
277           </imageobject>
278           <textobject>
279             <phrase>The Multi-Lingual Search System Architecture</phrase>
280           </textobject>
281           <caption>
282             <para>
283               <emphasis role="strong">
284                 The Multi-Lingual Search System Architecture.
285               </emphasis>
286               <para>
287                 Network connections across local area networks are
288                 represented by straight lines, and those over the
289                 internet by jagged lines.
290           </caption>
291         </mediaobject>
292
293 Where the three <*object> thingies inside the top-level <mediaobject>
294 are decreasingly preferred version to include depending on what the
295 rendering engine can handle.  I generated the EPS version of the image
296 by exporting a line-drawing done in TGIF, then converted that to the
297 GIF using a shell-script called "epstogif" which used an appallingly
298 baroque sequence of conversions, which I would prefer not to pollute
299 the Zebra build environment with:
300
301         #!/bin/sh
302
303         # Yes, what follows is stupidly convoluted, but I can't find a
304         # more straightforward path from the EPS generated by tgif's
305         # "Print" command into a browser-friendly format.
306
307         file=`echo "$1" | sed 's/\.eps//'`
308         ps2pdf "$1" "$file".pdf
309         pdftopbm "$file".pdf "$file"
310         pnmscale 0.50 < "$file"-000001.pbm | pnmcrop | ppmtogif
311         rm -f "$file".pdf "$file"-000001.pbm
312
313 -->
314
315  <!-- Keep this comment at the end of the file
316  Local variables:
317  mode: sgml
318  sgml-omittag:t
319  sgml-shorttag:t
320  sgml-minimize-attributes:nil
321  sgml-always-quote-attributes:t
322  sgml-indent-step:1
323  sgml-indent-data:t
324  sgml-parent-document: "zebra.xml"
325  sgml-local-catalogs: nil
326  sgml-namecase-general:t
327  End:
328  -->