Moved section about special retrieval zebra:: to Architecture chapter.
authorAdam Dickmeiss <adam@indexdata.dk>
Fri, 24 Nov 2006 13:05:11 +0000 (13:05 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Fri, 24 Nov 2006 13:05:11 +0000 (13:05 +0000)
Added table with supported zebra:: elements.

doc/architecture.xml
doc/field-structure.xml

index b139038..dfc8335 100644 (file)
@@ -1,7 +1,6 @@
  <chapter id="architecture">
-  <!-- $Id: architecture.xml,v 1.13 2006-09-22 12:34:45 adam Exp $ -->
+  <!-- $Id: architecture.xml,v 1.14 2006-11-24 13:05:11 adam Exp $ -->
   <title>Overview of Zebra Architecture</title>
-  
 
   <section id="architecture-representation">
    <title>Local Representation</title>
   </para>
   </section>
 
+  <section id="default-idx-zebra">
+   <title>Retrieval of Zebra internal record data</title>
+   <para>
+    Starting with <literal>Zebra</literal> version 2.0.5 or newer, it is
+    possible to use a special element set which has the prefix
+    <literal>zebra::</literal>.
+   </para>
+   <para>
+    Using this element will, regardless of record type, return
+    Zebra's internal index structure/data for a record.
+    In particular, the regular record filters are not invoked when
+    these are in use.
+    This can in some cases make the retrival faster than regular
+    retrieval operations (for MARC, XML etc).
+   </para>
+   <table id="special-retrieval">
+    <title>Special Retrieval Elements</title>
+    <tgroup cols="2">
+     <thead>
+      <row>
+       <entry>Element Set</entry>
+       <entry>Description</entry>
+       <entry>Syntax</entry>
+      </row>
+     </thead>
+     <tbody>
+      <row>
+       <entry><literal>zebra::meta::sysno</literal></entry>
+       <entry>Get Zebra record system ID</entry>
+       <entry>XML and SUTRS</entry>
+      </row>
+      <row>
+       <entry><literal>zebra::data</literal></entry>
+       <entry>Get raw record</entry>
+       <entry>all</entry>
+      </row>
+      <row>
+       <entry><literal>zebra::meta</literal></entry>
+       <entry>Get Zebra record internal metadata</entry>
+       <entry>XML and SUTRS</entry>
+      </row>
+      <row>
+       <entry><literal>zebra::index</literal></entry>
+       <entry>Get all indexed keys for record</entry>
+       <entry>XML and SUTRS</entry>
+      </row>
+      <row>
+       <entry>
+       <literal>zebra::index::</literal><replaceable>f</replaceable>
+       </entry>
+       <entry>
+       Get indexed keys for field <replaceable>f</replaceable> of record
+       </entry>
+       <entry>XML and SUTRS</entry>
+      </row>
+      <row>
+       <entry>
+       <literal>zebra::index::</literal><replaceable>field</replaceable>:<replaceable>t</replaceable>
+       </entry>
+       <entry>
+       Get indexed keys for field <replaceable>f</replaceable>
+         and type <replaceable>t</replaceable> of record
+       </entry>
+       <entry>XML and SUTRS</entry>
+      </row>
+     </tbody>
+    </tgroup>
+   </table>
+   <para>
+    For example, to fetch the raw binary record data stored in the
+    zebra internal storage, or on the filesystem, the following
+    commands can be issued:
+    <screen>
+      Z> f @attr 1=title my
+      Z> format xml
+      Z> elements zebra::data
+      Z> s 1+1
+      Z> format sutrs
+      Z> s 1+1
+      Z> format usmarc
+      Z> s 1+1
+    </screen>
+    </para>
+   <para>
+    The special 
+    <literal>zebra::data</literal> element set name is 
+    defined for any record syntax, but will always fetch  
+    the raw record data in exactly the original form. No record syntax
+    specific transformations will be applied to the raw record data. 
+   </para>
+   <para>
+    Also, Zebra internal metadata about the record can be accessed: 
+    <screen>
+      Z> f @attr 1=title my
+      Z> format xml
+      Z> elements zebra::meta::sysno
+      Z> s 1+1
+    </screen> 
+    displays in <literal>XML</literal> record syntax only internal
+    record system number, whereas 
+    <screen>
+      Z> f @attr 1=title my
+      Z> format xml
+      Z> elements zebra::meta
+      Z> s 1+1
+    </screen> 
+    displays all available metadata on the record. These include sytem
+    number, database name,  indexed filename,  filter used for indexing,
+    score and static ranking information and finally bytesize of record.
+   </para>
+   <para>
+    Sometimes, it is very hard to figure out what exactly has been
+    indexed how and in which indexes. Using the indexing stylesheet of
+    the Alvis filter, one can at least see which portion of the record
+    went into which index, but a similar aid does not exist for all
+    other indexing filters.  
+   </para>
+   <para>
+    The special
+    <literal>zebra::index</literal> element set names are provided to
+    access information on per record indexed fields. For example, the
+    queries 
+    <screen>
+      Z> f @attr 1=title my
+      Z> format sutrs
+      Z> elements zebra::index
+      Z> s 1+1
+    </screen>
+    will display all indexed tokens from all indexed fields of the
+    first record, and it will display in <literal>SUTRS</literal>
+    record syntax, whereas 
+    <screen>
+      Z> f @attr 1=title my
+      Z> format xml
+      Z> elements zebra::index::title
+      Z> s 1+1
+      Z> elements zebra::index::title:p
+      Z> s 1+1
+    </screen> 
+    displays in <literal>XML</literal> record syntax only the content
+      of the zebra string index <literal>title</literal>, or
+      even only the type <literal>p</literal> phrase indexed part of it.
+   </para>
+   <note>
+    <para>
+     Trying to access numeric <literal>Bib-1</literal> use
+     attributes or trying to access non-existent zebra intern string
+     access points will result in a Diagnostic 25: Specified element set
+     'name not valid for specified database.
+    </para>
+   </note>
+  </section>
+
  </chapter> 
 
  <!-- Keep this comment at the end of the file
index 6318dbe..bd46d2a 100644 (file)
@@ -1,5 +1,5 @@
  <chapter id="fields-and-charsets">
-  <!-- $Id: field-structure.xml,v 1.6 2006-11-23 09:03:50 marc Exp $ -->
+  <!-- $Id: field-structure.xml,v 1.7 2006-11-24 13:05:11 adam Exp $ -->
   <title>Field Structure and Character Sets
   </title>
   
    </para>
   </section>
 
-  <section id="default-idx-zebra">
-   <title>Accessing Zebra internal record data using 
-    the <literal>zebra::</literal> element sets</title>
-   <para>
-    Starting with <literal>Zebra</literal> version
-    <literal>2.0.4-2</literal> or newer, one has the possibility to
-    use the special
-    <literal>zebra::data</literal>,
-    <literal>zebra::meta</literal> and 
-    <literal>zebra::index</literal> element set names.
-   </para>
-   <note>
-    <para>
-     Usage of the <literal>zebra::</literal> element sets accesses
-     record data directly from the internal storage, and will
-     therefore work exactly the same way, irrespectively of indexing
-     filter used. 
-    </para>
-    <para>
-     These element set names are optimized for retrieval speed, and
-     will perform better than using for example
-     <literal>alvis</literal> filter XSLT based extraction of small
-     parts of the records.  
-    </para>
-   </note>
-   <para>
-    For example, to  fetch the raw binary record data stored in the
-    zebra internal storage, or on the filesystem, the following
-    commands can be issued:
-    <screen>
-      Z> f @attr 1=title my
-      Z> format xml
-      Z> elements zebra::data
-      Z> s 1+1
-      Z> format sutrs
-      Z> s 1+1
-      Z> format usmarc
-      Z> s 1+1
-    </screen>
-    </para>
-   <note>
-    <para>
-     The special 
-     <literal>zebra::data</literal> element set name is 
-     defined for any record syntax, but will always fetch  
-     the raw record data in exactly the original form. No record syntax
-     specific transformations will be applied to the raw record data. 
-    </para>
-   </note>
-   <para>
-    Also, Zebra internal metadata about the record can be accessed: 
-    <screen>
-      Z> f @attr 1=title my
-      Z> format xml
-      Z> elements zebra::meta::sysno
-      Z> s 1+1
-    </screen> 
-    displays in <literal>XML</literal> record syntax only internal
-    record system number, whereas 
-    <screen>
-      Z> f @attr 1=title my
-      Z> format xml
-      Z> elements zebra::meta
-      Z> s 1+1
-    </screen> 
-    displays all available metadata on the record. These include sytem
-      number, database name,  indexed filename,  filter used for indexing,
-      score and static ranking information and finally bytesize of record.
-   </para>
-   <note>
-    <para>
-     The special 
-     <literal>zebra::meta</literal> element set names are only 
-     defined for
-     <literal>SUTRS</literal> and <literal>XML</literal> record
-     syntaxes. 
-    </para>
-   </note>
-   <para>
-    Sometimes, it is very hard to figure out what exactly has been
-    indexed how and in which indexes. Using the indexing stylesheet of
-    the Alvis filter, one can at least see which portion of the record
-    went into which index, but a similar aid does not exist for all
-    other indexing filters.  
-   </para>
-   <para>
-    The special
-    <literal>zebra::index</literal> element set names are provided to
-    access information on per record indexed fields. For example, the
-    queries 
-    <screen>
-      Z> f @attr 1=title my
-      Z> format sutrs
-      Z> elements zebra::index
-      Z> s 1+1
-    </screen>
-    will display all indexed tokens from all indexed fields of the
-    first record, and it will display in <literal>SUTRS</literal>
-    record syntax, whereas 
-    <screen>
-      Z> f @attr 1=title my
-      Z> format xml
-      Z> elements zebra::index::title
-      Z> s 1+1
-      Z> elements zebra::index::title:p
-      Z> s 1+1
-    </screen> 
-    displays in <literal>XML</literal> record syntax only the content
-      of the zebra string index <literal>title</literal>, or
-      even only the type <literal>p</literal> phrase indexed part of it.
-   </para>
-   <note>
-    <para>
-     The special <literal>zebra::index</literal> 
-     element set names are only 
-     defined for
-     <literal>SUTRS</literal> and <literal>XML</literal> record
-     syntaxes. 
-    </para>
-    <para> Trying to access numeric <literal>Bib-1</literal> use
-    attributes or trying to access non-existent zebra intern string
-    access points will result in a
-    <literal>
-     Diagnostic [25]: Specified element set name not valid for specified database
-    </literal>
-    </para>
-   </note>
-  </section>
  </chapter>
  <!-- Keep this comment at the end of the file
  Local variables: