提交 446add93 authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 8e2208bb
...@@ -195,7 +195,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>. ...@@ -195,7 +195,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>Clustering: adding a node should be very fast and without interrupting clients (very short lock) </li><li>Clustering: adding a node should be very fast and without interrupting clients (very short lock)
</li><li>Compatibility: # is the start of a single line comment (MySQL) but date quote (Access). Mode specific </li><li>Compatibility: # is the start of a single line comment (MySQL) but date quote (Access). Mode specific
</li><li>Run benchmarks with JDK 1.5, JDK 1.6, java -server </li><li>Run benchmarks with JDK 1.5, JDK 1.6, java -server
</li><li>Optimizations: faster hash function for strings, byte arrays </li><li>Optimizations: faster hash function for strings.
</li><li>DatabaseEventListener: callback for all operations (including expected time, RUNSCRIPT) and cancel functionality </li><li>DatabaseEventListener: callback for all operations (including expected time, RUNSCRIPT) and cancel functionality
</li><li>Benchmark: add a graph to show how databases scale (performance/database size) </li><li>Benchmark: add a graph to show how databases scale (performance/database size)
</li><li>Implement a SQLData interface to map your data over to a custom object </li><li>Implement a SQLData interface to map your data over to a custom object
...@@ -271,7 +271,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>. ...@@ -271,7 +271,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>Use a default delay of 1 second before closing a database. </li><li>Use a default delay of 1 second before closing a database.
</li><li>Write (log) to system table before adding to internal data structures. </li><li>Write (log) to system table before adding to internal data structures.
</li><li>Support direct lookup for MIN and MAX when using WHERE (see todo.txt / Direct Lookup). </li><li>Support direct lookup for MIN and MAX when using WHERE (see todo.txt / Direct Lookup).
</li><li>Support other array types (String[], double[]) in PreparedStatement.setObject(int, Object); </li><li>Support other array types (String[], double[]) in PreparedStatement.setObject(int, Object) (with test case).
</li><li>MVCC should not be memory bound (uncommitted data is kept in memory in the delta index; maybe using a regular b-tree index solves the problem). </li><li>MVCC should not be memory bound (uncommitted data is kept in memory in the delta index; maybe using a regular b-tree index solves the problem).
</li><li>Oracle compatibility: support NLS_DATE_FORMAT. </li><li>Oracle compatibility: support NLS_DATE_FORMAT.
</li><li>Cluster: add feature to make sure cluster nodes can not get out of sync (for example by stopping one process). </li><li>Cluster: add feature to make sure cluster nodes can not get out of sync (for example by stopping one process).
......
...@@ -9314,7 +9314,7 @@ Compatibility: # is the start of a single line comment (MySQL) but date quote (A ...@@ -9314,7 +9314,7 @@ Compatibility: # is the start of a single line comment (MySQL) but date quote (A
Run benchmarks with JDK 1.5, JDK 1.6, java -server Run benchmarks with JDK 1.5, JDK 1.6, java -server
@roadmap_1162_li @roadmap_1162_li
Optimizations: faster hash function for strings, byte arrays Optimizations: faster hash function for strings.
@roadmap_1163_li @roadmap_1163_li
DatabaseEventListener: callback for all operations (including expected time, RUNSCRIPT) and cancel functionality DatabaseEventListener: callback for all operations (including expected time, RUNSCRIPT) and cancel functionality
...@@ -9539,7 +9539,7 @@ Write (log) to system table before adding to internal data structures. ...@@ -9539,7 +9539,7 @@ Write (log) to system table before adding to internal data structures.
Support direct lookup for MIN and MAX when using WHERE (see todo.txt / Direct Lookup). Support direct lookup for MIN and MAX when using WHERE (see todo.txt / Direct Lookup).
@roadmap_1237_li @roadmap_1237_li
Support other array types (String[], double[]) in PreparedStatement.setObject(int, Object); Support other array types (String[], double[]) in PreparedStatement.setObject(int, Object) (with test case).
@roadmap_1238_li @roadmap_1238_li
MVCC should not be memory bound (uncommitted data is kept in memory in the delta index; maybe using a regular b-tree index solves the problem). MVCC should not be memory bound (uncommitted data is kept in memory in the delta index; maybe using a regular b-tree index solves the problem).
......
...@@ -9314,7 +9314,7 @@ H2 コンソール アプリケーション ...@@ -9314,7 +9314,7 @@ H2 コンソール アプリケーション
#Run benchmarks with JDK 1.5, JDK 1.6, java -server #Run benchmarks with JDK 1.5, JDK 1.6, java -server
@roadmap_1162_li @roadmap_1162_li
#Optimizations: faster hash function for strings, byte arrays #Optimizations: faster hash function for strings.
@roadmap_1163_li @roadmap_1163_li
#DatabaseEventListener: callback for all operations (including expected time, RUNSCRIPT) and cancel functionality #DatabaseEventListener: callback for all operations (including expected time, RUNSCRIPT) and cancel functionality
...@@ -9539,7 +9539,7 @@ H2 コンソール アプリケーション ...@@ -9539,7 +9539,7 @@ H2 コンソール アプリケーション
#Support direct lookup for MIN and MAX when using WHERE (see todo.txt / Direct Lookup). #Support direct lookup for MIN and MAX when using WHERE (see todo.txt / Direct Lookup).
@roadmap_1237_li @roadmap_1237_li
#Support other array types (String[], double[]) in PreparedStatement.setObject(int, Object); #Support other array types (String[], double[]) in PreparedStatement.setObject(int, Object) (with test case).
@roadmap_1238_li @roadmap_1238_li
#MVCC should not be memory bound (uncommitted data is kept in memory in the delta index; maybe using a regular b-tree index solves the problem). #MVCC should not be memory bound (uncommitted data is kept in memory in the delta index; maybe using a regular b-tree index solves the problem).
......
...@@ -3103,7 +3103,7 @@ roadmap_1158_li=Support dynamic linked schema (automatically adding/updating/rem ...@@ -3103,7 +3103,7 @@ roadmap_1158_li=Support dynamic linked schema (automatically adding/updating/rem
roadmap_1159_li=Clustering\: adding a node should be very fast and without interrupting clients (very short lock) roadmap_1159_li=Clustering\: adding a node should be very fast and without interrupting clients (very short lock)
roadmap_1160_li=Compatibility\: \# is the start of a single line comment (MySQL) but date quote (Access). Mode specific roadmap_1160_li=Compatibility\: \# is the start of a single line comment (MySQL) but date quote (Access). Mode specific
roadmap_1161_li=Run benchmarks with JDK 1.5, JDK 1.6, java -server roadmap_1161_li=Run benchmarks with JDK 1.5, JDK 1.6, java -server
roadmap_1162_li=Optimizations\: faster hash function for strings, byte arrays roadmap_1162_li=Optimizations\: faster hash function for strings.
roadmap_1163_li=DatabaseEventListener\: callback for all operations (including expected time, RUNSCRIPT) and cancel functionality roadmap_1163_li=DatabaseEventListener\: callback for all operations (including expected time, RUNSCRIPT) and cancel functionality
roadmap_1164_li=Benchmark\: add a graph to show how databases scale (performance/database size) roadmap_1164_li=Benchmark\: add a graph to show how databases scale (performance/database size)
roadmap_1165_li=Implement a SQLData interface to map your data over to a custom object roadmap_1165_li=Implement a SQLData interface to map your data over to a custom object
...@@ -3178,7 +3178,7 @@ roadmap_1233_li=MySQL compatibility\: real SQL statement for DESCRIBE TEST ...@@ -3178,7 +3178,7 @@ roadmap_1233_li=MySQL compatibility\: real SQL statement for DESCRIBE TEST
roadmap_1234_li=Use a default delay of 1 second before closing a database. roadmap_1234_li=Use a default delay of 1 second before closing a database.
roadmap_1235_li=Write (log) to system table before adding to internal data structures. roadmap_1235_li=Write (log) to system table before adding to internal data structures.
roadmap_1236_li=Support direct lookup for MIN and MAX when using WHERE (see todo.txt / Direct Lookup). roadmap_1236_li=Support direct lookup for MIN and MAX when using WHERE (see todo.txt / Direct Lookup).
roadmap_1237_li=Support other array types (String[], double[]) in PreparedStatement.setObject(int, Object); roadmap_1237_li=Support other array types (String[], double[]) in PreparedStatement.setObject(int, Object) (with test case).
roadmap_1238_li=MVCC should not be memory bound (uncommitted data is kept in memory in the delta index; maybe using a regular b-tree index solves the problem). roadmap_1238_li=MVCC should not be memory bound (uncommitted data is kept in memory in the delta index; maybe using a regular b-tree index solves the problem).
roadmap_1239_li=Oracle compatibility\: support NLS_DATE_FORMAT. roadmap_1239_li=Oracle compatibility\: support NLS_DATE_FORMAT.
roadmap_1240_li=Cluster\: add feature to make sure cluster nodes can not get out of sync (for example by stopping one process). roadmap_1240_li=Cluster\: add feature to make sure cluster nodes can not get out of sync (for example by stopping one process).
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论