提交 19e2c32e authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 f2c91521
......@@ -122,6 +122,17 @@ To create the file <code>h2client.jar</code>, go to the directory <code>h2</code
build jarClient
</pre>
<h3>Using Lucene 2 / 3</h3>
<p>
Both Apache Lucene 2 and Lucene 3 are supported.
Currently Apache Lucene version 2.x is used by default for H2 version 1.2.x,
and Lucene version 3.x is used by default for H2 version 1.3.x.
To use a different version of Lucene when compiling, it needs to be specified as follows:
</p>
<pre>
build -Dlucene=2 clean compile
</pre>
<h2 id="maven2">Using Maven 2</h2>
<h3>Using a Central Repository</h3>
<p>
......
......@@ -18,7 +18,9 @@ Change Log
<h1>Change Log</h1>
<h2>Next Version (unreleased)</h2>
<ul><li>JMX (the Java management extension) is now supported. Issue 253.
<ul><li>Nested outer joins without brackets were not working as expected. Example:
select * from a inner join b inner join c on c.id = b.id on b.id = a.id;
</li><li>JMX (the Java management extension) is now supported. Issue 253.
</li><li>Creating a comment on a column didn't work if the schema name was equal the database name.
</li><li>When using multi-version concurrency, re-running a prepared statement with the same parameters
would sometimes give the same result even if another connection committed a change (the previous result was sometimes
......
......@@ -1132,7 +1132,8 @@ org.h2.fulltext.FullText.searchData(conn, text, limit, offset);
<h3>Using the Lucene Fulltext Search</h3>
<p>
To use the Lucene full text search, you need the Lucene library in the classpath.
Currently only Apache Lucene version 2.x is supported.
Currently Apache Lucene version 2.x is used by default for H2 version 1.2.x,
and Lucene version 3.x is used by default for H2 version 1.3.x.
How to do that depends on the application; if you use the H2 Console, you can add the Lucene
jar file to the environment variables <code>H2DRIVERS</code> or
<code>CLASSPATH</code>.
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论