You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by bu...@apache.org on 2013/08/08 21:58:55 UTC

svn commit: r873617 - in /websites/staging/jena/trunk/content: ./ documentation/query/text-query.html

Author: buildbot
Date: Thu Aug  8 19:58:55 2013
New Revision: 873617

Log:
Staging update by buildbot for jena

Modified:
    websites/staging/jena/trunk/content/   (props changed)
    websites/staging/jena/trunk/content/documentation/query/text-query.html

Propchange: websites/staging/jena/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Aug  8 19:58:55 2013
@@ -1 +1 @@
-1510330
+1512007

Modified: websites/staging/jena/trunk/content/documentation/query/text-query.html
==============================================================================
--- websites/staging/jena/trunk/content/documentation/query/text-query.html (original)
+++ websites/staging/jena/trunk/content/documentation/query/text-query.html Thu Aug  8 19:58:55 2013
@@ -423,18 +423,22 @@ service, creating the index by loading t
 The index and the dataset can be built using command line tools in two
 steps: first load the RDF data, second create an index from the existing
 RDF dataset.</p>
+<h3 id="step-1-building-a-tdb-dataset">Step 1 - Building a TDB dataset</h3>
+<p><strong>Note:</strong> If you have an existing TDB dataset then you can skip this step</p>
 <p>Build the TDB dataset:</p>
 <div class="codehilite"><pre><span class="n">java</span> <span class="o">-</span><span class="n">cp</span> $<span class="n">FUSEKI_HOME</span><span class="o">/</span><span class="n">fuseki</span><span class="o">-</span><span class="n">server</span><span class="p">.</span><span class="n">jar</span> <span class="n">tdb</span><span class="p">.</span><span class="n">tdbloader</span> <span class="o">--</span><span class="n">tdb</span><span class="p">=</span><span class="n">assembler_file</span> <span class="n">data_file</span>
 </pre></div>
 
 
-<p>using the copy of TDB included with Fuseki.  Alternatively, use one of the
-<a href="../tdb/commands.html">TDB utilities</a> <code>tdbloader</code> or <code>tdbloader2</code>:</p>
+<p>using the copy of TDB included with Fuseki.</p>
+<p>Alternatively, use one of the
+<a href="../tdb/commands.html">TDB utilities</a> <code>tdbloader</code> or <code>tdbloader2</code> which are better for bulk loading:</p>
 <div class="codehilite"><pre>$<span class="n">JENA_HOME</span><span class="o">/</span><span class="n">bin</span><span class="o">/</span><span class="n">tdbloader</span> <span class="o">--</span><span class="n">loc</span><span class="p">=</span><span class="n">directory</span>  <span class="n">data_file</span>
 </pre></div>
 
 
-<p>then build the text index with the <code>jena.textindexer</code>:</p>
+<h3 id="step-2-build-the-text-index">Step 2 - Build the Text Index</h3>
+<p>You can then build the text index with the <code>jena.textindexer</code> tool:</p>
 <div class="codehilite"><pre><span class="n">java</span> <span class="o">-</span><span class="n">cp</span> $<span class="n">FUSEKI_HOME</span><span class="o">/</span><span class="n">fuseki</span><span class="o">-</span><span class="n">server</span><span class="p">.</span><span class="n">jar</span> <span class="n">jena</span><span class="p">.</span><span class="n">textindexer</span> <span class="o">--</span><span class="n">desc</span><span class="p">=</span><span class="n">assembler_file</span>
 </pre></div>