Skip to content

Commit

Permalink
updated site
Browse files Browse the repository at this point in the history
  • Loading branch information
takapi327 committed May 19, 2024
1 parent 1931fab commit 3b95c59
Show file tree
Hide file tree
Showing 22 changed files with 110 additions and 110 deletions.
8 changes: 4 additions & 4 deletions en/01-Table-Definitions.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -77,7 +77,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -558,7 +558,7 @@ <h3><a href="#constraint-name" name="constraint-name" class="anchor"><span class
// )
</code></pre>
<div class="source-github">
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-alpha9/docs/target/mdoc/en/01-Table-Definitions.md">here</a>.
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-beta1/docs/target/mdoc/en/01-Table-Definitions.md">here</a>.
</div>

<div class="nav-next">
Expand Down Expand Up @@ -643,7 +643,7 @@ <h3><a href="#constraint-name" name="constraint-name" class="anchor"><span class
<script type="text/javascript" src="../lib/prettify/prettify.js"></script>
<script type="text/javascript" src="../lib/prettify/lang-scala.js"></script>
<script type="text/javascript">jQuery(function(){window.prettyPrint && prettyPrint()});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-alpha9', 'https://takapi327.github.io/ldbc/')});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-beta1', 'https://takapi327.github.io/ldbc/')});</script>


</html>
8 changes: 4 additions & 4 deletions en/02-Custom-Data-Type.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -77,7 +77,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -180,7 +180,7 @@ <h1><a href="#custom-data-type" name="custom-data-type" class="anchor"><span cla
)
</code></pre>
<div class="source-github">
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-alpha9/docs/target/mdoc/en/02-Custom-Data-Type.md">here</a>.
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-beta1/docs/target/mdoc/en/02-Custom-Data-Type.md">here</a>.
</div>

<div class="nav-next">
Expand Down Expand Up @@ -250,7 +250,7 @@ <h1><a href="#custom-data-type" name="custom-data-type" class="anchor"><span cla
<script type="text/javascript" src="../lib/prettify/prettify.js"></script>
<script type="text/javascript" src="../lib/prettify/lang-scala.js"></script>
<script type="text/javascript">jQuery(function(){window.prettyPrint && prettyPrint()});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-alpha9', 'https://takapi327.github.io/ldbc/')});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-beta1', 'https://takapi327.github.io/ldbc/')});</script>


</html>
10 changes: 5 additions & 5 deletions en/03-Type-safe-Query-Builder.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -77,7 +77,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -118,7 +118,7 @@
<h1><a href="#type-safe-query-construction" name="type-safe-query-construction" class="anchor"><span class="anchor-link"></span></a>Type-safe Query Construction</h1>
<p>This chapter describes how to use LDBC-built table definitions to construct type-safe queries.</p>
<p>The following dependencies must be set up for the project</p>
<pre class="prettyprint"><code class="language-scala">libraryDependencies += &quot;io.github.takapi327&quot; %% &quot;ldbc-query-builder&quot; % &quot;0.3.0-alpha9&quot;
<pre class="prettyprint"><code class="language-scala">libraryDependencies += &quot;io.github.takapi327&quot; %% &quot;ldbc-query-builder&quot; % &quot;0.3.0-beta1&quot;
</code></pre>
<p>If you have not yet read how to define tables in LDBC, we recommend that you read the chapter <a href="/ldbc/en/01-Table-Definitions.html">Table Definitions</a> first.</p>
<p>The following code example assumes the following import</p>
Expand Down Expand Up @@ -510,7 +510,7 @@ <h2><a href="#ddl" name="ddl" class="anchor"><span class="anchor-link"></span></
step((tableQuery.dropTable.update.autoCommit(dataSource) &gt;&gt; IO.println(&quot;Complete drop table&quot;)).unsafeRunSync())
</code></pre>
<div class="source-github">
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-alpha9/docs/target/mdoc/en/03-Type-safe-Query-Builder.md">here</a>.
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-beta1/docs/target/mdoc/en/03-Type-safe-Query-Builder.md">here</a>.
</div>

<div class="nav-next">
Expand Down Expand Up @@ -599,7 +599,7 @@ <h2><a href="#ddl" name="ddl" class="anchor"><span class="anchor-link"></span></
<script type="text/javascript" src="../lib/prettify/prettify.js"></script>
<script type="text/javascript" src="../lib/prettify/lang-scala.js"></script>
<script type="text/javascript">jQuery(function(){window.prettyPrint && prettyPrint()});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-alpha9', 'https://takapi327.github.io/ldbc/')});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-beta1', 'https://takapi327.github.io/ldbc/')});</script>


</html>
12 changes: 6 additions & 6 deletions en/04-Database-Connection.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -77,7 +77,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -119,7 +119,7 @@ <h1><a href="#database-connection" name="database-connection" class="anchor"><sp
<p>This chapter describes how to use queries built with LDBC to process connections to databases.</p>
<p>The following dependencies must be set up for the project</p>
<pre class="prettyprint"><code class="language-scala">libraryDependencies ++= Seq(
&quot;io.github.takapi327&quot; %% &quot;ldbc-dsl&quot; % &quot;0.3.0-alpha9&quot;,
&quot;io.github.takapi327&quot; %% &quot;ldbc-dsl&quot; % &quot;0.3.0-beta1&quot;,
&quot;com.mysql&quot; % &quot;mysql-connector-j&quot; % &quot;8.4.0&quot;
)
</code></pre>
Expand Down Expand Up @@ -307,7 +307,7 @@ <h3><a href="#use-in-method-chain" name="use-in-method-chain" class="anchor"><sp
<h2><a href="#using-a-hikaricp-connection-pool" name="using-a-hikaricp-connection-pool" class="anchor"><span class="anchor-link"></span></a>Using a HikariCP Connection Pool</h2>
<p><code>ldbc-hikari</code> provides a builder to build HikariConfig and HikariDataSource for building HikariCP connection pools.</p>
<pre class="prettyprint"><code class="language-scala">libraryDependencies ++= Seq(
&quot;io.github.takapi327&quot; %% &quot;ldbc-hikari&quot; % &quot;0.3.0-alpha9&quot;,
&quot;io.github.takapi327&quot; %% &quot;ldbc-hikari&quot; % &quot;0.3.0-beta1&quot;,
)
</code></pre>
<p><code>HikariConfigBuilder</code> is a builder to build <code>HikariConfig</code> of HikariCP as the name suggests.</p>
Expand Down Expand Up @@ -492,7 +492,7 @@ <h3><a href="#hikaridatabase" name="hikaridatabase" class="anchor"><span class="
}
</code></pre>
<div class="source-github">
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-alpha9/docs/target/mdoc/en/04-Database-Connection.md">here</a>.
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-beta1/docs/target/mdoc/en/04-Database-Connection.md">here</a>.
</div>

<div class="nav-next">
Expand Down Expand Up @@ -581,7 +581,7 @@ <h3><a href="#hikaridatabase" name="hikaridatabase" class="anchor"><span class="
<script type="text/javascript" src="../lib/prettify/prettify.js"></script>
<script type="text/javascript" src="../lib/prettify/lang-scala.js"></script>
<script type="text/javascript">jQuery(function(){window.prettyPrint && prettyPrint()});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-alpha9', 'https://takapi327.github.io/ldbc/')});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-beta1', 'https://takapi327.github.io/ldbc/')});</script>


</html>
8 changes: 4 additions & 4 deletions en/05-Plain-SQL-Queries.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -77,7 +77,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -136,7 +136,7 @@ <h2><a href="#plain-sql" name="plain-sql" class="anchor"><span class="anchor-lin
yield ...).transaction
</code></pre>
<div class="source-github">
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-alpha9/docs/target/mdoc/en/05-Plain-SQL-Queries.md">here</a>.
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-beta1/docs/target/mdoc/en/05-Plain-SQL-Queries.md">here</a>.
</div>

<div class="nav-next">
Expand Down Expand Up @@ -219,7 +219,7 @@ <h2><a href="#plain-sql" name="plain-sql" class="anchor"><span class="anchor-lin
<script type="text/javascript" src="../lib/prettify/prettify.js"></script>
<script type="text/javascript" src="../lib/prettify/lang-scala.js"></script>
<script type="text/javascript">jQuery(function(){window.prettyPrint && prettyPrint()});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-alpha9', 'https://takapi327.github.io/ldbc/')});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-beta1', 'https://takapi327.github.io/ldbc/')});</script>


</html>
10 changes: 5 additions & 5 deletions en/06-Generating-SchemaSPY-Documentation.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -77,7 +77,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -118,7 +118,7 @@
<h1><a href="#schemaspy-document-generation" name="schemaspy-document-generation" class="anchor"><span class="anchor-link"></span></a>SchemaSPY Document Generation</h1>
<p>This chapter describes how to use table definitions built in LDBC to create SchemaSPY documents.</p>
<p>The following dependencies must be set up for the project</p>
<pre class="prettyprint"><code class="language-scala">libraryDependencies += &quot;io.github.takapi327&quot; %% &quot;ldbc-schemaspy&quot; % &quot;0.3.0-alpha9&quot;
<pre class="prettyprint"><code class="language-scala">libraryDependencies += &quot;io.github.takapi327&quot; %% &quot;ldbc-schemaspy&quot; % &quot;0.3.0-beta1&quot;
</code></pre>
<p>If you have not yet read how to define tables in LDBC, we recommend that you read the chapter <a href="/ldbc/en/01-Table-Definitions.html">Table Definitions</a> first.</p>
<p>The following code example assumes the following import</p>
Expand Down Expand Up @@ -166,7 +166,7 @@ <h2><a href="#generated-from-database-connection" name="generated-from-database-
</code></pre>
<p>The process of making database connections is done in a Java-written implementation inside SchemaSpy. Note that threads are not managed by the Effect system.</p>
<div class="source-github">
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-alpha9/docs/target/mdoc/en/06-Generating-SchemaSPY-Documentation.md">here</a>.
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-beta1/docs/target/mdoc/en/06-Generating-SchemaSPY-Documentation.md">here</a>.
</div>

<div class="nav-next">
Expand Down Expand Up @@ -250,7 +250,7 @@ <h2><a href="#generated-from-database-connection" name="generated-from-database-
<script type="text/javascript" src="../lib/prettify/prettify.js"></script>
<script type="text/javascript" src="../lib/prettify/lang-scala.js"></script>
<script type="text/javascript">jQuery(function(){window.prettyPrint && prettyPrint()});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-alpha9', 'https://takapi327.github.io/ldbc/')});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-beta1', 'https://takapi327.github.io/ldbc/')});</script>


</html>
10 changes: 5 additions & 5 deletions en/07-Schema-Code-Generation.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -77,7 +77,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -118,7 +118,7 @@
<h1><a href="#schema-code-generation" name="schema-code-generation" class="anchor"><span class="anchor-link"></span></a>Schema Code Generation</h1>
<p>This chapter describes how to automatically generate LDBC table definitions from SQL files.</p>
<p>The following dependencies must be set up for the project</p>
<pre class="prettyprint"><code class="language-scala 3">addSbtPlugin(&quot;io.github.takapi327&quot; % &quot;ldbc-plugin&quot; % &quot;0.3.0-alpha9&quot;)
<pre class="prettyprint"><code class="language-scala 3">addSbtPlugin(&quot;io.github.takapi327&quot; % &quot;ldbc-plugin&quot; % &quot;0.3.0-beta1&quot;)
</code></pre>
<h2><a href="#generation" name="generation" class="anchor"><span class="anchor-link"></span></a>Generation</h2>
<p>Enable the plugin for the project.</p>
Expand Down Expand Up @@ -293,7 +293,7 @@ <h2><a href="#customize" name="customize" class="anchor"><span class="anchor-lin
)
</code></pre>
<div class="source-github">
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-alpha9/docs/target/mdoc/en/07-Schema-Code-Generation.md">here</a>.
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-beta1/docs/target/mdoc/en/07-Schema-Code-Generation.md">here</a>.
</div>

<div class="nav-next">
Expand Down Expand Up @@ -378,7 +378,7 @@ <h2><a href="#customize" name="customize" class="anchor"><span class="anchor-lin
<script type="text/javascript" src="../lib/prettify/prettify.js"></script>
<script type="text/javascript" src="../lib/prettify/lang-scala.js"></script>
<script type="text/javascript">jQuery(function(){window.prettyPrint && prettyPrint()});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-alpha9', 'https://takapi327.github.io/ldbc/')});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-beta1', 'https://takapi327.github.io/ldbc/')});</script>


</html>
8 changes: 4 additions & 4 deletions en/08-Perdormance.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -77,7 +77,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -139,7 +139,7 @@ <h2><a href="#query-execution-overhead" name="query-execution-overhead" class="a
<p align="center">Insert Throughput</p>
<img src="../img/insert_throughput.png">
<div class="source-github">
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-alpha9/docs/target/mdoc/en/08-Perdormance.md">here</a>.
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-beta1/docs/target/mdoc/en/08-Perdormance.md">here</a>.
</div>

<div class="nav-next">
Expand Down Expand Up @@ -224,7 +224,7 @@ <h2><a href="#query-execution-overhead" name="query-execution-overhead" class="a
<script type="text/javascript" src="../lib/prettify/prettify.js"></script>
<script type="text/javascript" src="../lib/prettify/lang-scala.js"></script>
<script type="text/javascript">jQuery(function(){window.prettyPrint && prettyPrint()});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-alpha9', 'https://takapi327.github.io/ldbc/')});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-beta1', 'https://takapi327.github.io/ldbc/')});</script>


</html>
12 changes: 6 additions & 6 deletions en/09-Connector.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -77,7 +77,7 @@
<span class="home-icon"></span>LDBC
</a>
<div class="version-number">
0.3.0-alpha9
0.3.0-beta1
</div>
</div>
<div class="nav-toc">
Expand Down Expand Up @@ -127,10 +127,10 @@ <h1><a href="#connector" name="connector" class="anchor"><span class="anchor-lin
<p>The LDBC connector is the lowest layer API. We plan to use this connector to provide higher-layer APIs in the future. We also plan to make it compatible with existing higher-layer APIs.</p>
<p>The following dependencies must be set up in your project in order to use it.</p>
<p><strong>JVM</strong></p>
<pre class="prettyprint"><code class="language-scala">libraryDependencies += &quot;io.github.takapi327&quot; %% &quot;ldbc-connector&quot; % &quot;0.3.0-alpha9&quot;
<pre class="prettyprint"><code class="language-scala">libraryDependencies += &quot;io.github.takapi327&quot; %% &quot;ldbc-connector&quot; % &quot;0.3.0-beta1&quot;
</code></pre>
<p><strong>JS/Native</strong></p>
<pre class="prettyprint"><code class="language-scala">libraryDependencies += &quot;io.github.takapi327&quot; %%% &quot;ldbc-connector&quot; % &quot;0.3.0-alpha9&quot;
<pre class="prettyprint"><code class="language-scala">libraryDependencies += &quot;io.github.takapi327&quot; %%% &quot;ldbc-connector&quot; % &quot;0.3.0-beta1&quot;
</code></pre>
<p><strong>Supported Versions</strong></p>
<p>The current version supports the following versions of MySQL</p>
Expand Down Expand Up @@ -1005,7 +1005,7 @@ <h2><a href="#unsupported-feature" name="unsupported-feature" class="anchor"><sp
<li>etc&hellip;</li>
</ul>
<div class="source-github">
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-alpha9/docs/target/mdoc/en/09-Connector.md">here</a>.
The source code for this page can be found <a href="https://github.com/takapi327/ldbc/tree/v0.3.0-beta1/docs/target/mdoc/en/09-Connector.md">here</a>.
</div>

</div>
Expand Down Expand Up @@ -1091,7 +1091,7 @@ <h2><a href="#unsupported-feature" name="unsupported-feature" class="anchor"><sp
<script type="text/javascript" src="../lib/prettify/prettify.js"></script>
<script type="text/javascript" src="../lib/prettify/lang-scala.js"></script>
<script type="text/javascript">jQuery(function(){window.prettyPrint && prettyPrint()});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-alpha9', 'https://takapi327.github.io/ldbc/')});</script>
<script type="text/javascript">jQuery(function(jq){initOldVersionWarnings(jq, '0.3.0-beta1', 'https://takapi327.github.io/ldbc/')});</script>


</html>
Loading

0 comments on commit 3b95c59

Please sign in to comment.